File tree 1 file changed +15
-1
lines changed
src/Nest/CommonOptions/Stats
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,25 @@ public class TranslogStats
8
8
[ JsonProperty ( "operations" ) ]
9
9
public long Operations { get ; set ; }
10
10
11
+ [ JsonProperty ( "uncommitted_operations" ) ]
12
+ public int UncommittedOperations { get ; set ; }
13
+
11
14
[ JsonProperty ( "size" ) ]
12
15
public string Size { get ; set ; }
13
16
14
17
[ JsonProperty ( "size_in_bytes" ) ]
15
18
public long SizeInBytes { get ; set ; }
16
19
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 ; }
17
31
}
18
- }
32
+ }
You can’t perform that action at this time.
0 commit comments