diff --git a/src/Nest/CommonOptions/Stats/TranslogStats.cs b/src/Nest/CommonOptions/Stats/TranslogStats.cs index 9ac28ddcd09..ebb4ee93f37 100644 --- a/src/Nest/CommonOptions/Stats/TranslogStats.cs +++ b/src/Nest/CommonOptions/Stats/TranslogStats.cs @@ -8,11 +8,25 @@ public class TranslogStats [JsonProperty("operations")] public long Operations { get; set; } + [JsonProperty("uncommitted_operations")] + public int UncommittedOperations { get; set; } + [JsonProperty("size")] public string Size { get; set; } [JsonProperty("size_in_bytes")] public long SizeInBytes { get; set; } + [JsonProperty("uncommitted_size")] + public string UncommittedSize { get; set; } + + [JsonProperty("uncommitted_size_in_bytes")] + public long UncommittedSizeInBytes { get; set; } + + /// + /// Valid only for Elasticsearch 6.3.0+ + /// + [JsonProperty("earliest_last_modified_age")] + public long EarliestLastModifiedAge { get; set; } } -} \ No newline at end of file +}