collector

This commit is contained in:
insanity@loafle.com 2017-05-16 18:03:45 +09:00
parent f205c2e550
commit c75555a71c

View File

@ -63,7 +63,7 @@ func (c *Collector) stop() {
}
func (c *Collector) collect(id string) {
go func() {
conf := c.cm.GetSensorById(id)
log.Printf("COLLECT %s - [ID: %s] [Crawler : %s]", time.Now(), conf.Id, conf.Crawler.Name)
conn, err := crm.GetInstance().GetClient(conf.Crawler.Container)
@ -85,7 +85,7 @@ func (c *Collector) collect(id string) {
}
log.Println("collector get result : ", out)
c.dataCh <- out
}()
}
func (c *Collector) addSensor(sensorId string) error {