alrm/config/group.go

37 lines
619 B
Go
Raw Normal View History

package config
import (
"fmt"
)
type AlrmGroup struct {
Name string
Hosts map[string]*AlrmHost
}
func (ag *AlrmGroup) NewHost(name string) (*AlrmHost, error) {
if ag.Hosts == nil {
ag.Hosts = make(map[string]*AlrmHost)
}
if _, exists := ag.Hosts[name]; exists {
return nil, fmt.Errorf("host %s already exists", name)
}
host := &AlrmHost{Name: name}
ag.Hosts[name] = host
return host, nil
}
2021-01-02 06:29:12 -09:00
func (ag *AlrmGroup) Check(debuglvl int) error {
for _, host := range ag.Hosts {
for _, chk := range host.Checks {
2021-01-02 06:29:12 -09:00
err := chk.Check(debuglvl)
if err != nil {
return err
}
}
}
return nil
}