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

31 lines
687 B
Go

package redis
import (
cnsmr "git.loafle.net/commons/service_matcher-go/redis"
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 RedisHealthCrawler struct {
health.SocketHeahthCrawler
}
func (c *RedisHealthCrawler) Name() string {
return "REDIS_HEALTH_CRAWLER"
}
func (c *RedisHealthCrawler) 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 := &RedisHealthCrawler{}
c.SetMatcher(cnsmr.NewMatcher())
return c
}