collector
This commit is contained in:
parent
fd7ea8daf6
commit
5e5bef7c47
|
@ -75,11 +75,13 @@ func (c *Collector) collect(id string) {
|
|||
|
||||
in.Id = id
|
||||
in.Name = grpc.Crawlers(grpc.Crawlers_value[conf.Crawler.Name])
|
||||
|
||||
out, err := dc.Get(context.Background(), in)
|
||||
if err != nil {
|
||||
log.Printf("Cannot collect [ID: %s] [Crawler : %s] - [Err : %s]\n", conf.Id, conf.Crawler.Name, err)
|
||||
log.Printf("Cannot collect [ID: %s] [Crawler : %s] - [Err : %s]\n", conf.Id, conf.Crawler.Name, err.Error())
|
||||
return
|
||||
}
|
||||
log.Printf("COLLECTED. [ID: %s] [Crawler : %s] [Result : %s]\n", conf.Id, conf.Crawler.Name, out.GetData() )
|
||||
log.Printf("COLLECTED. [ID: %s] [Crawler : %s] [Result : %s]\n", conf.Id, conf.Crawler.Name, out.GetData())
|
||||
c.dataCh <- out
|
||||
}()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user