Skip to content

Commit 524f141

Browse files
committed
Fix #3328 Add periodic flush count to FlushStats (#3360)
This commit adds periodic flush count to FlushStats
1 parent d215520 commit 524f141

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Nest/CommonOptions/Stats/FlushStats.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)