diff --git a/agent/agent.go b/agent/agent.go index 4b65ff5..6c6a907 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -1,4 +1,7 @@ -// Package agent handles the agent's SSH server and system stats collection. +// Package agent implements the Beszel monitoring agent that collects and serves system metrics. +// +// The agent runs on monitored systems and communicates collected data +// to the Beszel hub for centralized monitoring and alerting. package agent import ( diff --git a/beszel.go b/beszel.go index 82b882c..6a2adf6 100644 --- a/beszel.go +++ b/beszel.go @@ -1,10 +1,15 @@ +// Package beszel provides core application constants and version information +// which are used throughout the application. package beszel import "github.com/blang/semver" const ( + // Version is the current version of the application. Version = "0.12.7" + // AppName is the name of the application. AppName = "beszel" ) +// MinVersionCbor is the minimum supported version for CBOR compatibility. var MinVersionCbor = semver.MustParse("0.12.0")