-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add uuid to indices stats #3437
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -6,6 +6,12 @@ namespace Nest | |||
[JsonObject] | |||
public class IndicesStats | |||
{ | |||
/// <summary> | |||
/// Introduced in 6.4.0, returns the index UUID |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe move Introduced in 6.4.0,
into <remarks></remarks>
?
/// Introduced in 6.4.0, returns the index UUID | ||
/// </summary> | ||
[JsonProperty("uuid")] | ||
public string Uuid { get; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be UUID
, to match elsewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
As per elastic/elasticsearch#31871 (cherry picked from commit cdfcc2c)
elastic/elasticsearch#31871