Skip to content

Commit d73961e

Browse files
authored
Additional Rollup Stats (#3759)
Additional Rollup Stats
1 parent 41fdbb1 commit d73961e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Nest/XPack/RollUp/GetRollupJob/RollupJobStats.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,23 @@ public class RollupJobStats
1515

1616
[JsonProperty("trigger_count")]
1717
public long TriggerCount { get; internal set; }
18+
19+
[JsonProperty("search_failures")]
20+
public long? SearchFailures { get; internal set; }
21+
22+
[JsonProperty("index_failures")]
23+
public long? IndexFailures { get; internal set; }
24+
25+
[JsonProperty("index_time_in_ms")]
26+
public long? IndexTimeInMilliseconds { get; internal set; }
27+
28+
[JsonProperty("index_total")]
29+
public long? IndexTotal { get; internal set; }
30+
31+
[JsonProperty("search_time_in_ms")]
32+
public long? SearchTimeInMilliseconds { get; internal set; }
33+
34+
[JsonProperty("search_total")]
35+
public long? SearchTotal { get; internal set; }
1836
}
1937
}

0 commit comments

Comments
 (0)