Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional Rollup Stats #3759

Merged
merged 2 commits into from
May 28, 2019
Merged
Changes from 1 commit
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
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; }
}
}