We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a timeout parameter in Elasticsearch and OpenSearch which could be used in the following lines:
elasticsearch_exporter/collector/nodes.go
Lines 1820 to 1824 in d64ec09
_nodes/stats
This change would give the possibility to have a subset of the data for the request, missing only the response from specific parts.
e.g.
GET /_nodes/stats?timeout=5s --- { "_nodes" : { "total" : ##, "successful" : ##, "failed" : 1, "failures" : [ { "type" : "failed_node_exception", "reason" : "Failed node [xXXxxxxxxXXxxxXxxX]", "node_id" : "xXXxXxXxxXXxXXxxxXxx", "caused_by" : { "type" : "receive_timeout_transport_exception", "reason" : "[xxxx.xxx.xxx][1.2.3.4:9300][cluster:monitor/nodes/stats[n]] request_id [5409341] timed out after [5003ms]" } } ] }, [..] }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
There is a timeout parameter in Elasticsearch and OpenSearch which could be used in the following lines:
elasticsearch_exporter/collector/nodes.go
Lines 1820 to 1824 in d64ec09
_nodes/stats
).This change would give the possibility to have a subset of the data for the request, missing only the response from specific parts.
e.g.
The text was updated successfully, but these errors were encountered: