-
Some of my pollers are stopping with PollClient_timeout error. Has anyone encountered this before? Can they tell me how to fix this? /# bin/harvest version An excerpt for one poller is below /{"level":"warn","Poller":"atl_dataservices","error":"0: ","collector":"Ems","object":"Ems","caller":"./poller.go:698","time":"2023-07-07T13:52:04-04:00","message":"init collector-object"} |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
hi @s-kuchi did you by chance modify any of Harvest's templates in the Maybe you added Here is an example of where in the template file Are you creating custom templates or modifying Harvest's out-of-the-box ones? |
Beta Was this translation helpful? Give feedback.
-
Thanks! Try something like this collector: Zapi
# Order here matters!
schedule:
- data: 180s
client_timeout: 60s The difference is |
Beta Was this translation helpful? Give feedback.
-
HI @s-kuchi looks like that timeout is happening the first time the poller tries to talk to the cluster. Is it possible that cluster is not reachable from the machine running Harvest or maybe the ip is wrong? |
Beta Was this translation helpful? Give feedback.
Thanks!
Try something like this
The difference is
client_timeout
should be at the root level instead of a child ofschedule
. Whenclient_timeout
is a child ofschedule
it has a different meaning.