Skip to content

Commit

Permalink
Add uuid to indices stats (#3437)
Browse files Browse the repository at this point in the history
As per elastic/elasticsearch#31871

(cherry picked from commit cdfcc2c)
  • Loading branch information
Mpdreamz authored and russcam committed Oct 26, 2018
1 parent a884743 commit 8df1c22
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Nest/Indices/Monitoring/IndicesStats/IndicesStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ namespace Nest
[JsonObject]
public class IndicesStats
{
/// <summary>
/// Universal Unique Identifier for the index
/// </summary>
/// <remarks>
/// Introduced in Elasticsearch 6.4.0
/// </remarks>
[JsonProperty("uuid")]
public string UUID { get; }

[JsonProperty("primaries")]
public IndexStats Primaries { get; internal set; }

Expand Down

0 comments on commit 8df1c22

Please sign in to comment.