container_network/crawler/health/ssh/SSHHealthCrawler.go

65 lines
1.4 KiB
Go
Raw Normal View History

2018-04-19 15:46:38 +00:00
package ssh
import (
2018-07-04 12:28:28 +00:00
"time"
"git.loafle.net/commons/logging-go"
2018-04-19 15:46:38 +00:00
cnsms "git.loafle.net/commons/service_matcher-go/ssh"
2018-04-26 08:50:26 +00:00
ocmsc "git.loafle.net/overflow/commons-go/model/sensorconfig"
2018-04-19 15:46:38 +00:00
"git.loafle.net/overflow/container_network/crawler/health"
2018-07-04 09:46:27 +00:00
"git.loafle.net/overflow/crawler-go"
2018-04-19 15:46:38 +00:00
)
type SSHHealthCrawler struct {
2018-07-02 11:53:06 +00:00
health.SocketHealthCrawler
2018-04-19 15:46:38 +00:00
}
2018-06-21 10:49:14 +00:00
func (c *SSHHealthCrawler) Key() string {
2018-04-20 03:07:24 +00:00
return "SSH_HEALTH"
}
func (c *SSHHealthCrawler) String() string {
return "SSH Health Crawler"
}
2018-04-23 10:23:29 +00:00
func (c *SSHHealthCrawler) Auth(auth map[string]interface{}) error {
2018-04-20 03:07:24 +00:00
return nil
2018-04-19 15:46:38 +00:00
}
2018-04-26 08:50:26 +00:00
func (c *SSHHealthCrawler) Get(config *ocmsc.SensorConfig) (map[string]string, error) {
2018-07-04 09:31:45 +00:00
result := make(map[string]string, 0)
conn, cErr := c.GetConnection(config)
defer conn.Close()
if cErr != nil {
2018-07-04 09:46:27 +00:00
sckEnum := health.ToSocketErrorEnum(cErr)
2018-07-04 12:28:28 +00:00
result["ERR"] = sckEnum.String()
2018-07-04 09:46:27 +00:00
logging.Logger().Error("SSHHealthCrawler Connection Error: ", sckEnum.String())
2018-07-04 09:31:45 +00:00
return result, cErr
}
2018-07-04 12:28:28 +00:00
for _, mci := range config.MetaCollectionItems {
switch mci.Key {
case "service.health.response_time":
start := time.Now().UTC()
if err := c.CheckHealth(config, conn); err != nil {
result["ERR"] = err.Error()
}
elapsed := time.Since(start)
result[mci.Key] = elapsed.String()
break
default:
break
}
2018-04-19 15:46:38 +00:00
}
2018-07-04 12:28:28 +00:00
return result, nil
2018-04-19 15:46:38 +00:00
}
func NewCrawler() crawler.Crawler {
c := &SSHHealthCrawler{}
c.SetMatcher(cnsms.NewMatcher())
return c
}