File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
src/Nest/CommonOptions/Stats Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,25 @@ public class TranslogStats
88 [ JsonProperty ( "operations" ) ]
99 public long Operations { get ; set ; }
1010
11+ [ JsonProperty ( "uncommitted_operations" ) ]
12+ public int UncommittedOperations { get ; set ; }
13+
1114 [ JsonProperty ( "size" ) ]
1215 public string Size { get ; set ; }
1316
1417 [ JsonProperty ( "size_in_bytes" ) ]
1518 public long SizeInBytes { get ; set ; }
1619
20+ [ JsonProperty ( "uncommitted_size" ) ]
21+ public string UncommittedSize { get ; set ; }
22+
23+ [ JsonProperty ( "uncommitted_size_in_bytes" ) ]
24+ public long UncommittedSizeInBytes { get ; set ; }
25+
26+ /// <remarks>
27+ /// Valid only for Elasticsearch 6.3.0+
28+ /// </remarks>
29+ [ JsonProperty ( "earliest_last_modified_age" ) ]
30+ public long EarliestLastModifiedAge { get ; set ; }
1731 }
18- }
32+ }
You can’t perform that action at this time.
0 commit comments