-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Expose index uuid in _stats endpoint #31791
Labels
:Data Management/Indices APIs
APIs to create and manage indices and templates
>enhancement
help wanted
adoptme
Comments
dliappis
added
discuss
>enhancement
:Data Management/Indices APIs
APIs to create and manage indices and templates
labels
Jul 4, 2018
Pinging @elastic/es-core-infra |
We discussed this in FixItThursday and it sounds reasonable and should be relatively easy to do. I'm marking this as adopt me for anyone to pick up. |
Thanks, great to hear. |
original-brownbear
added a commit
to original-brownbear/elasticsearch
that referenced
this issue
Jul 6, 2018
* Add "uuid" field to each index's section in the `/_stats` response * closes elastic#31791
Opened #31871 for this one |
original-brownbear
added a commit
that referenced
this issue
Jul 17, 2018
* Add "uuid" field to each index's section in the `/_stats` response * closes #31791
@original-brownbear Thanks for making this happen. |
original-brownbear
added a commit
to original-brownbear/elasticsearch
that referenced
this issue
Jul 17, 2018
* Add "uuid" field to each index's section in the `/_stats` response * closes elastic#31791
original-brownbear
added a commit
that referenced
this issue
Jul 17, 2018
* Add "uuid" field to each index's section in the `/_stats` response * closes #31791
original-brownbear
added a commit
to original-brownbear/elasticsearch
that referenced
this issue
Jul 18, 2018
* UUID field was added for elastic#31791 and only went into 6.4 and 7.0 * Fixes elastic#32119
original-brownbear
added a commit
that referenced
this issue
Jul 18, 2018
original-brownbear
added a commit
to original-brownbear/elasticsearch
that referenced
this issue
Jul 18, 2018
* UUID field was added for elastic#31791 and only went into 6.4 and 7.0 * Fixes elastic#32119
original-brownbear
added a commit
that referenced
this issue
Jul 18, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Data Management/Indices APIs
APIs to create and manage indices and templates
>enhancement
help wanted
adoptme
To collect metrics about the Elasticsearch indices Metricbeat calls the
/_stats
endpoint. Inside the object"indices" : {
all indices are listed with its names. The data that is missing inside is the index uuid. It can be fetched by callingGET /index-name
and then can be found underuuid
. Having to make a separate request for each index to fetch the identifier is not an optimal solution.The uuid is important for the following reasons:
NOTE: The _stats endpoint also currently does not expose the
cluster_uuid
and we fetch it in a separate call.The text was updated successfully, but these errors were encountered: