container_network/crawler/health/mongodb/MongoDBHealthCrawler.go

39 lines
867 B
Go
Raw Normal View History

2018-04-20 00:46:38 +09:00
package mongodb
import (
cnsmm "git.loafle.net/commons/service_matcher-go/mongodb"
2018-04-26 17:50:26 +09:00
ocmsc "git.loafle.net/overflow/commons-go/model/sensorconfig"
2018-04-20 00:46:38 +09:00
"git.loafle.net/overflow/container_network/crawler/health"
crawler "git.loafle.net/overflow/crawler-go"
)
type MongoDBHealthCrawler struct {
2018-07-02 20:53:06 +09:00
health.SocketHealthCrawler
2018-04-20 00:46:38 +09:00
}
2018-06-21 19:49:14 +09:00
func (c *MongoDBHealthCrawler) Key() string {
2018-04-20 12:07:24 +09:00
return "MONGODB_HEALTH"
}
func (c *MongoDBHealthCrawler) String() string {
return "MongoDB Health Crawler"
}
2018-04-23 19:23:29 +09:00
func (c *MongoDBHealthCrawler) Auth(auth map[string]interface{}) error {
2018-04-20 12:07:24 +09:00
return nil
2018-04-20 00:46:38 +09:00
}
2018-04-26 17:50:26 +09:00
func (c *MongoDBHealthCrawler) Get(config *ocmsc.SensorConfig) (map[string]string, error) {
2018-07-02 20:53:06 +09:00
rss, err := c.CheckHealth(config)
2018-04-20 00:46:38 +09:00
if err != nil {
return nil, err
}
return rss, nil
}
func NewCrawler() crawler.Crawler {
c := &MongoDBHealthCrawler{}
c.SetMatcher(cnsmm.NewMatcher())
return c
}