Skip to content

Commit

Permalink
Additional Rollup Stats #3759
Browse files Browse the repository at this point in the history
  • Loading branch information
codebrain committed May 30, 2019
1 parent 6f30bf7 commit 91e3255
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

[DataMember(Name ="trigger_count")]
public long TriggerCount { get; internal set; }

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

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

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

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

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

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

0 comments on commit 91e3255

Please sign in to comment.