A simple monitoring solution written in Go (work in progress)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
301 B

package check
import (
"fmt"
)
type Check interface {
Parse(string) (bool, error)
Check(int) error
}
func NewCheck(name string, addr string) (Check, error) {
switch name {
case "ping":
return NewCheckPing(addr), nil
default:
return nil, fmt.Errorf("unknown check name \"%s\"", name)
}
}