Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/Nest/CommonOptions/Stats/FlushStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,21 @@ public class FlushStats
[JsonProperty("total")]
public long Total { get; set; }

/// <summary>
/// The number of flushes that were periodically triggered when translog exceeded the flush threshold.
/// </summary>
[JsonProperty("periodic")]
public long Periodic { get; set; }

/// <summary>
/// The total time merges have been executed.
/// </summary>
[JsonProperty("total_time")]
public string TotalTime { get; set; }

/// <summary>
/// The total time merges have been executed (in milliseconds).
/// </summary>
[JsonProperty("total_time_in_millis")]
public long TotalTimeInMilliseconds { get; set; }

Expand Down