2018-04-19 15:46:38 +00:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2018-07-04 12:28:28 +00:00
|
|
|
"time"
|
|
|
|
|
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)
|
|
|
|
|
2018-07-05 03:06:41 +00:00
|
|
|
conn, err := c.GetConnection(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-04 09:31:45 +00:00
|
|
|
}
|
2018-07-04 12:50:57 +00:00
|
|
|
defer conn.Close()
|
2018-07-04 09:31:45 +00:00
|
|
|
|
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 {
|
2018-07-05 03:06:41 +00:00
|
|
|
return nil, err
|
2018-07-04 12:28:28 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|