We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8fd489 commit 54d4a9fCopy full SHA for 54d4a9f
src/Nest/CommonOptions/Stats/FlushStats.cs
@@ -9,8 +9,21 @@ public class FlushStats
9
[JsonProperty("total")]
10
public long Total { get; set; }
11
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
19
+ /// The total time merges have been executed.
20
21
[JsonProperty("total_time")]
22
public string TotalTime { get; set; }
23
24
25
+ /// The total time merges have been executed (in milliseconds).
26
27
[JsonProperty("total_time_in_millis")]
28
public long TotalTimeInMilliseconds { get; set; }
29
0 commit comments