-
Notifications
You must be signed in to change notification settings - Fork 793
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
fix _/node/stats related metrics #439
fix _/node/stats related metrics #439
Conversation
Signed-off-by: Falk Scheerschmidt <[email protected]>
1bcf19e
to
1649533
Compare
There is a test that is skipped here for 7.13. This will need to be removed as well to ensure that nothing else is broken. |
Signed-off-by: Falk Scheerschmidt <[email protected]>
65bed4d
to
df0f1d0
Compare
Thank you ! Will this works on ES < 7.13 ? |
Yes, the automated tests and a manual test on a 6.8 cluster works. |
@sysadmind is there a ci pipline that automatically deploys this image someplace? or does it have to wait for a release? |
The available docker images are here: https://quay.io/repository/prometheuscommunity/elasticsearch-exporter?tab=tags |
heh, can't get any more broken than it is now.. for 7.13 anyway. |
Deployed the master image for two of our es clusters, works great 👍 |
@sysadmind Wanted to know by when the changes will be available in the exporter image (1.2.1?) |
v1.2.1 has been released |
Thank you @sysadmind , will test it out. |
Since Elasticsearch 7.13 the node related metrics are broken. It relates to a API change in Elasticsearch which breaks the unmarshling:
The
HTTP
field will only checked for the roles and also only aslen(HTTP)
, so it seems it is not important to have the type here.Example for http field in the response (Elasticsearch 7.13)
Related #419