-
Notifications
You must be signed in to change notification settings - Fork 797
New issue
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
elasticsearch_indices_active_queries is not present #640
Comments
It would appear the the README is wrong. The metric name is elasticsearch_search_active_queries. I think we need to fix this. |
The README was wrong as noted in prometheus-community#640. Add the indices_ prefix to the subsystem since this is related to indices and update the README. Signed-off-by: Joe Adams <github@joeadams.io>
I can't find this metric, and I can't find elasticsearch_indices_index_current either. Do you know why |
The README was wrong as noted in prometheus-community#640. Add the indices_ prefix to the subsystem since this is related to indices and update the README. Signed-off-by: Joe Adams <github@joeadams.io>
A new metrics.I can't find elasticsearch_indices_index_current, |
I'm not sure why you don't see these. I just ran a test and I can see the elasticsearch_index_stats_index_current metric. Run elasticsearch in a docker container:
Run the exporter:
Check the metrics from the exporter:
For next steps, I would query the exporter directly and see if the metric is listed. Also, are you sure that you're on the latest version of the exporter? The current version is v1.5.0 |
I have --es.ssl-skip-verify on my es exporter, does it have anything to do with this? |
Running the latest version 1.5
But also, I do not get
Other metrics around index stats do exist:
|
Oh it's a typo!
Says the readme, but the correct name is |
We've setup an environment to test out this exporter. One of the metrics we'd like to monitor doesn't seem to be present:
elasticsearch_indices_active_queries
Here is the config we're using:
/exporter-bin/elasticsearch_exporter/elasticsearch_exporter
--es.uri="${DOMAIN_ENDPOINT}"
--aws.region="us-east-1"
--log.level="${LOG_LEVEL}"
--es.all
--es.cluster_settings
--es.indices
--es.indices_mappings
--es.indices_settings
--es.shards
--es.snapshots
--es.timeout="45s"
--log.output="stdout" &
I also cannot find this metric referenced anywhere in code. Has this metric been deprecated?
The text was updated successfully, but these errors were encountered: