container_network/crawler/health/imap/IMAPHealthCrawler.go
crusader f28ff9a303 ing
2018-04-20 00:46:38 +09:00

31 lines
680 B
Go

package imap
import (
cnsmi "git.loafle.net/commons/service_matcher-go/imap"
ocsm "git.loafle.net/overflow/commons-go/sensorconfig/model"
"git.loafle.net/overflow/container_network/crawler/health"
crawler "git.loafle.net/overflow/crawler-go"
)
type IMAPHealthCrawler struct {
health.SocketHeahthCrawler
}
func (c *IMAPHealthCrawler) Name() string {
return "IMAP_HEALTH_CRAWLER"
}
func (c *IMAPHealthCrawler) 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 := &IMAPHealthCrawler{}
c.SetMatcher(cnsmi.NewMatcher())
return c
}