Skip to content

Commit

Permalink
Additional Rollup Stats (#3759)
Browse files Browse the repository at this point in the history
Additional Rollup Stats
  • Loading branch information
codebrain authored May 28, 2019
1 parent 41fdbb1 commit d73961e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Nest/XPack/RollUp/GetRollupJob/RollupJobStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,23 @@ public class RollupJobStats

[JsonProperty("trigger_count")]
public long TriggerCount { get; internal set; }

[JsonProperty("search_failures")]
public long? SearchFailures { get; internal set; }

[JsonProperty("index_failures")]
public long? IndexFailures { get; internal set; }

[JsonProperty("index_time_in_ms")]
public long? IndexTimeInMilliseconds { get; internal set; }

[JsonProperty("index_total")]
public long? IndexTotal { get; internal set; }

[JsonProperty("search_time_in_ms")]
public long? SearchTimeInMilliseconds { get; internal set; }

[JsonProperty("search_total")]
public long? SearchTotal { get; internal set; }
}
}

0 comments on commit d73961e

Please sign in to comment.