atc0005 / go-nagios

Shared Golang package for Nagios plugins
MIT License
8 stars 3 forks source link

Add ServiceState type #80

Closed atc0005 closed 3 years ago

atc0005 commented 3 years ago

Currently used by the atc0005/check-cert project:

// ServiceState represents the status label and exit code for a service check.
type ServiceState struct {

    // Label maps directly to one of the supported Nagios state labels.
    Label string

    // ExitCode is the exit or exit status code associated with a Nagios
    // service check.
    ExitCode int
}