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
330 B

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