2018-04-19 15:46:38 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
cnsmh "git.loafle.net/commons/service_matcher-go/http"
|
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"
|
|
|
|
crawler "git.loafle.net/overflow/crawler-go"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HTTPHealthCrawler 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 *HTTPHealthCrawler) Key() string {
|
2018-04-20 03:07:24 +00:00
|
|
|
return "HTTP_HEALTH"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HTTPHealthCrawler) String() string {
|
|
|
|
return "HTTP Health Crawler"
|
|
|
|
}
|
|
|
|
|
2018-04-23 10:23:29 +00:00
|
|
|
func (c *HTTPHealthCrawler) 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 *HTTPHealthCrawler) Get(config *ocmsc.SensorConfig) (map[string]string, error) {
|
2018-07-05 10:07:09 +00:00
|
|
|
//rss, err := c.CheckHealth(config)
|
|
|
|
//if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
//}
|
|
|
|
return nil, nil
|
2018-04-19 15:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCrawler() crawler.Crawler {
|
|
|
|
c := &HTTPHealthCrawler{}
|
|
|
|
c.SetMatcher(cnsmh.NewMatcher())
|
|
|
|
return c
|
|
|
|
}
|