container_network/crawler/health/ssh/SSHHealthCrawler.go

53 lines
1.2 KiB
Go
Raw Normal View History

2018-04-20 00:46:38 +09:00
package ssh
import (
cnsms "git.loafle.net/commons/service_matcher-go/ssh"
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"
2018-07-04 18:46:27 +09:00
"git.loafle.net/overflow/crawler-go"
"git.loafle.net/commons/logging-go"
2018-04-20 00:46:38 +09:00
)
type SSHHealthCrawler 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 *SSHHealthCrawler) Key() string {
2018-04-20 12:07:24 +09:00
return "SSH_HEALTH"
}
func (c *SSHHealthCrawler) String() string {
return "SSH Health Crawler"
}
2018-04-23 19:23:29 +09:00
func (c *SSHHealthCrawler) 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 *SSHHealthCrawler) Get(config *ocmsc.SensorConfig) (map[string]string, error) {
2018-07-04 18:31:45 +09:00
result := make(map[string]string, 0)
conn, cErr := c.GetConnection(config)
defer conn.Close()
if cErr != nil {
2018-07-04 18:46:27 +09:00
sckEnum := health.ToSocketErrorEnum(cErr)
result["Error"] = sckEnum.String()
logging.Logger().Error("SSHHealthCrawler Connection Error: ", sckEnum.String())
2018-07-04 18:31:45 +09:00
return result, cErr
}
rss, err := c.CheckHealth1(config, conn, result)
2018-04-20 00:46:38 +09:00
if err != nil {
return nil, err
}
return rss, nil
}
func NewCrawler() crawler.Crawler {
c := &SSHHealthCrawler{}
c.SetMatcher(cnsms.NewMatcher())
return c
}