File tree 2 files changed +30
-16
lines changed
2 files changed +30
-16
lines changed Original file line number Diff line number Diff line change 5
5
6
6
namespace Nest
7
7
{
8
- public interface INodeStatsResponse : IResponse
9
- {
10
- string ClusterName { get ; }
11
- Dictionary < string , NodeStats > Nodes { get ; }
12
- }
8
+ public interface INodeStatsResponse : IResponse
9
+ {
10
+ string ClusterName { get ; }
11
+ Dictionary < string , NodeStats > Nodes { get ; }
12
+ }
13
13
14
- [ JsonObject ]
15
- public class NodeStatsResponse : BaseResponse , INodeStatsResponse
16
- {
17
- public NodeStatsResponse ( )
18
- {
19
- this . IsValid = true ;
20
- }
14
+ [ JsonObject ]
15
+ public class NodeStatsResponse : BaseResponse , INodeStatsResponse
16
+ {
17
+ public NodeStatsResponse ( )
18
+ {
19
+ this . IsValid = true ;
20
+ }
21
21
22
- [ JsonProperty ( PropertyName = "cluster_name" ) ]
23
- public string ClusterName { get ; internal set ; }
24
- [ JsonProperty ( PropertyName = "nodes" ) ]
22
+ [ JsonProperty ( PropertyName = "cluster_name" ) ]
23
+ public string ClusterName { get ; internal set ; }
24
+ [ JsonProperty ( PropertyName = "nodes" ) ]
25
25
[ JsonConverter ( typeof ( DictionaryKeysAreNotPropertyNamesJsonConverter ) ) ]
26
26
public Dictionary < string , NodeStats > Nodes { get ; set ; }
27
- }
27
+ }
28
28
}
Original file line number Diff line number Diff line change @@ -22,8 +22,22 @@ public class IndexingStats
22
22
public string DeleteTime { get ; set ; }
23
23
[ JsonProperty ( PropertyName = "delete_time_in_millis" ) ]
24
24
public double DeleteTimeInMilliseconds { get ; set ; }
25
+
25
26
[ JsonProperty ( PropertyName = "delete_current" ) ]
26
27
public long DeleteCurrent { get ; set ; }
28
+
29
+ [ JsonProperty ( PropertyName = "noop_update_total" ) ]
30
+ public long NoopUpdateTotal { get ; set ; }
31
+
32
+ [ JsonProperty ( PropertyName = "is_throttled" ) ]
33
+ public bool IsThrottled { get ; set ; }
34
+
35
+ [ JsonProperty ( PropertyName = "throttle_time_in_millis" ) ]
36
+ public long ThrottleTimeInMilliseconds { get ; set ; }
37
+
38
+ [ JsonProperty ( PropertyName = "throttle_time" ) ]
39
+ public string ThrottleTime { get ; set ; }
40
+
27
41
[ JsonProperty ( PropertyName = "types" ) ]
28
42
[ JsonConverter ( typeof ( DictionaryKeysAreNotPropertyNamesJsonConverter ) ) ]
29
43
public Dictionary < string , TypeStats > Types { get ; set ; }
You can’t perform that action at this time.
0 commit comments