refactor(pkg): split plugin into multiple files

This commit is contained in:
Emmanuel BENOîT 2024-07-19 23:24:19 +02:00
parent cf88d63bc2
commit ebdb99be8b
Signed by: Emmanuel BENOîT
SSH key fingerprint: SHA256:l7PFUUF5TCDsvYeQC9OnTNz08dFY7Fvf4Hv3neIqYpg
2 changed files with 19 additions and 18 deletions

View file

@ -11,24 +11,6 @@ import (
"nocternity.net/gomonop/pkg/perfdata" "nocternity.net/gomonop/pkg/perfdata"
) )
// Status represents the return status of the monitoring plugin. The
// corresponding integer value will be used as the program's exit code,
// to be interpreted by the monitoring system.
type Status int
// Plugin exit statuses.
const (
OK Status = iota
WARNING
CRITICAL
UNKNOWN
)
// String representations of the plugin statuses.
func (s Status) String() string {
return [...]string{"OK", "WARNING", "ERROR", "UNKNOWN"}[s]
}
// Plugin represents the monitoring plugin's state, including its name, // Plugin represents the monitoring plugin's state, including its name,
// return status and message, additional lines of text, and performance // return status and message, additional lines of text, and performance
// data to be encoded in the output. // data to be encoded in the output.

19
pkg/plugin/status.go Normal file
View file

@ -0,0 +1,19 @@
package plugin // import nocternity.net/gomonop/pkg/perfdata
// Status represents the return status of the monitoring plugin. The
// corresponding integer value will be used as the program's exit code,
// to be interpreted by the monitoring system.
type Status int
// Plugin exit statuses.
const (
OK Status = iota
WARNING
CRITICAL
UNKNOWN
)
// String representations of the plugin statuses.
func (s Status) String() string {
return [...]string{"OK", "WARNING", "ERROR", "UNKNOWN"}[s]
}