File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
src/Nest/CommonOptions/Stats Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,21 @@ public class FlushStats
99 [ JsonProperty ( "total" ) ]
1010 public long Total { get ; set ; }
1111
12+ /// <summary>
13+ /// The number of flushes that were periodically triggered when translog exceeded the flush threshold.
14+ /// </summary>
15+ [ JsonProperty ( "periodic" ) ]
16+ public long Periodic { get ; set ; }
17+
18+ /// <summary>
19+ /// The total time merges have been executed.
20+ /// </summary>
1221 [ JsonProperty ( "total_time" ) ]
1322 public string TotalTime { get ; set ; }
23+
24+ /// <summary>
25+ /// The total time merges have been executed (in milliseconds).
26+ /// </summary>
1427 [ JsonProperty ( "total_time_in_millis" ) ]
1528 public long TotalTimeInMilliseconds { get ; set ; }
1629
You can’t perform that action at this time.
0 commit comments