container_network/crawler/health/mysql/MySQLHealthCrawler.go
crusader 042e4ac37b ing
2018-04-26 17:50:26 +09:00

39 lines
840 B
Go

package mysql
import (
cnsmm "git.loafle.net/commons/service_matcher-go/mysql"
ocmsc "git.loafle.net/overflow/commons-go/model/sensorconfig"
"git.loafle.net/overflow/container_network/crawler/health"
"git.loafle.net/overflow/crawler-go"
)
type MySQLHealthCrawler struct {
health.SocketHeahthCrawler
}
func (c *MySQLHealthCrawler) Name() string {
return "MYSQL_HEALTH"
}
func (c *MySQLHealthCrawler) String() string {
return "MySQL Health Crawler"
}
func (c *MySQLHealthCrawler) Auth(auth map[string]interface{}) error {
return nil
}
func (c *MySQLHealthCrawler) Get(config *ocmsc.SensorConfig) (map[string]string, error) {
rss, err := c.CheckHeahth(config)
if err != nil {
return nil, err
}
return rss, nil
}
func NewCrawler() crawler.Crawler {
c := &MySQLHealthCrawler{}
c.SetMatcher(cnsmm.NewMatcher())
return c
}