container_network/crawler/health/snmp/v3/SNMPHealthCrawler.go

39 lines
829 B
Go
Raw Normal View History

2018-04-19 15:46:38 +00:00
package v3
import (
cnsms "git.loafle.net/commons/service_matcher-go/snmp/v3"
ocsm "git.loafle.net/overflow/commons-go/sensorconfig/model"
"git.loafle.net/overflow/container_network/crawler/health"
"git.loafle.net/overflow/crawler-go"
)
type SNMPHealthCrawler struct {
health.SocketHeahthCrawler
}
func (c *SNMPHealthCrawler) Name() string {
2018-04-20 03:07:24 +00:00
return "SNMPV3_HEALTH"
}
func (c *SNMPHealthCrawler) String() string {
return "SNMP V3 Health Crawler"
}
func (c *SNMPHealthCrawler) Auth(auth map[string]string) error {
return nil
2018-04-19 15:46:38 +00:00
}
func (c *SNMPHealthCrawler) Get(config *ocsm.SensorConfig) (map[string]string, error) {
rss, err := c.CheckHeahth(config)
if err != nil {
return nil, err
}
return rss, nil
}
func NewCrawler() crawler.Crawler {
c := &SNMPHealthCrawler{}
c.SetMatcher(cnsms.NewMatcher())
return c
}