File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
src/Nest/XPack/RollUp/GetRollupJob Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -15,5 +15,23 @@ public class RollupJobStats
15
15
16
16
[ JsonProperty ( "trigger_count" ) ]
17
17
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 ; }
18
36
}
19
37
}
You can’t perform that action at this time.
0 commit comments