@@ -74,34 +74,34 @@ public class IndexStoreStats : StoreStats
74
74
[ JsonProperty ( "throttle_time" ) ]
75
75
public string ThrottleTime { get ; internal set ; }
76
76
[ JsonProperty ( "throttle_time_in_millis" ) ]
77
- public int ThrottleTimeInMilliseconds { get ; internal set ; }
77
+ public long ThrottleTimeInMilliseconds { get ; internal set ; }
78
78
}
79
79
80
80
[ JsonObject ]
81
81
public class IndexCacheStats
82
82
{
83
83
[ JsonProperty ( PropertyName = "field_evictions" ) ]
84
- public int FieldEvictions { get ; internal set ; }
84
+ public long FieldEvictions { get ; internal set ; }
85
85
[ JsonProperty ( PropertyName = "field_size" ) ]
86
86
public string FieldSize { get ; internal set ; }
87
87
[ JsonProperty ( PropertyName = "field_size_in_bytes" ) ]
88
- public int FieldSizeInBytes { get ; internal set ; }
88
+ public long FieldSizeInBytes { get ; internal set ; }
89
89
[ JsonProperty ( PropertyName = "filter_count" ) ]
90
- public int FilterCount { get ; internal set ; }
90
+ public long FilterCount { get ; internal set ; }
91
91
[ JsonProperty ( PropertyName = "filter_evictions" ) ]
92
- public int FilterEvictions { get ; internal set ; }
92
+ public long FilterEvictions { get ; internal set ; }
93
93
[ JsonProperty ( PropertyName = "filter_size" ) ]
94
94
public string FilterSize { get ; internal set ; }
95
95
[ JsonProperty ( PropertyName = "filter_size_in_bytes" ) ]
96
- public int FilterSizeInBytes { get ; internal set ; }
96
+ public long FilterSizeInBytes { get ; internal set ; }
97
97
[ JsonProperty ( PropertyName = "bloom_size" ) ]
98
98
public string BloomSize { get ; internal set ; }
99
99
[ JsonProperty ( PropertyName = "bloom_size_in_bytes" ) ]
100
- public int BloomSizeInBytes { get ; internal set ; }
100
+ public long BloomSizeInBytes { get ; internal set ; }
101
101
[ JsonProperty ( PropertyName = "id_cache_size" ) ]
102
102
public string IDCacheSize { get ; internal set ; }
103
103
[ JsonProperty ( PropertyName = "id_cache_size_in_bytes" ) ]
104
- public int IDCacheSizeInBytes { get ; internal set ; }
104
+ public long IDCacheSizeInBytes { get ; internal set ; }
105
105
}
106
106
}
107
107
@@ -114,6 +114,8 @@ public class UptimeStats
114
114
public string Uptime { get ; internal set ; }
115
115
[ JsonProperty ( "uptime_in_millis" ) ]
116
116
public long UptimeInMilliseconds { get ; internal set ; }
117
+ [ JsonProperty ( "load_average" ) ]
118
+ public float [ ] LoadAverage { get ; internal set ; }
117
119
}
118
120
119
121
[ JsonObject ]
@@ -190,15 +192,15 @@ public class CPUStats
190
192
[ JsonProperty ( "sys" ) ]
191
193
public string System { get ; internal set ; }
192
194
[ JsonProperty ( "sys_in_millis" ) ]
193
- public int SystemInMilliseconds { get ; internal set ; }
195
+ public long SystemInMilliseconds { get ; internal set ; }
194
196
[ JsonProperty ( "user" ) ]
195
197
public string User { get ; internal set ; }
196
198
[ JsonProperty ( "user_in_millis" ) ]
197
- public int UserInMilliseconds { get ; internal set ; }
199
+ public long UserInMilliseconds { get ; internal set ; }
198
200
[ JsonProperty ( "total" ) ]
199
201
public string Total { get ; internal set ; }
200
202
[ JsonProperty ( "total_in_millis" ) ]
201
- public int TotalInMilliseconds { get ; internal set ; }
203
+ public long TotalInMilliseconds { get ; internal set ; }
202
204
}
203
205
204
206
[ JsonObject ]
@@ -207,11 +209,11 @@ public class MemoryStats
207
209
[ JsonProperty ( "resident" ) ]
208
210
public string Resident { get ; internal set ; }
209
211
[ JsonProperty ( "resident_in_bytes" ) ]
210
- public int ResidentInBytes { get ; internal set ; }
212
+ public long ResidentInBytes { get ; internal set ; }
211
213
[ JsonProperty ( "share" ) ]
212
214
public string Share { get ; internal set ; }
213
215
[ JsonProperty ( "share_in_bytes" ) ]
214
- public int ShareInBytes { get ; internal set ; }
216
+ public long ShareInBytes { get ; internal set ; }
215
217
[ JsonProperty ( "total_virtual" ) ]
216
218
public string TotalVirtual { get ; internal set ; }
217
219
[ JsonProperty ( "total_virtual_in_bytes" ) ]
@@ -259,19 +261,19 @@ public class JVMPool
259
261
[ JsonProperty ( "used" ) ]
260
262
public string Used { get ; internal set ; }
261
263
[ JsonProperty ( "" ) ]
262
- public int UsedInBytes { get ; internal set ; }
264
+ public long UsedInBytes { get ; internal set ; }
263
265
[ JsonProperty ( "max" ) ]
264
266
public string Max { get ; internal set ; }
265
267
[ JsonProperty ( "max_in_bytes" ) ]
266
- public int MaxInBytes { get ; internal set ; }
268
+ public long MaxInBytes { get ; internal set ; }
267
269
[ JsonProperty ( "peak_used" ) ]
268
270
public string PeakUsed { get ; internal set ; }
269
271
[ JsonProperty ( "peak_used_in_bytes" ) ]
270
- public int PeakUsedInBytes { get ; internal set ; }
272
+ public long PeakUsedInBytes { get ; internal set ; }
271
273
[ JsonProperty ( "peak_max" ) ]
272
274
public string PeakMax { get ; internal set ; }
273
275
[ JsonProperty ( "peak_max_in_bytes" ) ]
274
- public int PeakMaxInBytes { get ; internal set ; }
276
+ public long PeakMaxInBytes { get ; internal set ; }
275
277
}
276
278
}
277
279
@@ -299,7 +301,7 @@ public class GarbageCollectorStats
299
301
[ JsonProperty ( "collection_time" ) ]
300
302
public string CollectionTime { get ; internal set ; }
301
303
[ JsonProperty ( "collection_time_in_millis" ) ]
302
- public int CollectionTimeInMilliseconds { get ; internal set ; }
304
+ public long CollectionTimeInMilliseconds { get ; internal set ; }
303
305
}
304
306
305
307
[ JsonObject ]
@@ -322,17 +324,17 @@ public class NodeBufferPool
322
324
public class ThreadCountStats
323
325
{
324
326
[ JsonProperty ( "threads" ) ]
325
- public int Threads { get ; internal set ; }
327
+ public long Threads { get ; internal set ; }
326
328
[ JsonProperty ( "queue" ) ]
327
- public int Queue { get ; internal set ; }
329
+ public long Queue { get ; internal set ; }
328
330
[ JsonProperty ( "active" ) ]
329
- public int Active { get ; internal set ; }
331
+ public long Active { get ; internal set ; }
330
332
[ JsonProperty ( "rejected" ) ]
331
- public int Rejected { get ; internal set ; }
333
+ public long Rejected { get ; internal set ; }
332
334
[ JsonProperty ( "largest" ) ]
333
- public int Largest { get ; internal set ; }
335
+ public long Largest { get ; internal set ; }
334
336
[ JsonProperty ( "completed" ) ]
335
- public int Completed { get ; internal set ; }
337
+ public long Completed { get ; internal set ; }
336
338
}
337
339
338
340
[ JsonObject ]
@@ -345,25 +347,25 @@ public class NetworkStats
345
347
public class TCPStats
346
348
{
347
349
[ JsonProperty ( "active_opens" ) ]
348
- public int ActiveOpens { get ; internal set ; }
350
+ public long ActiveOpens { get ; internal set ; }
349
351
[ JsonProperty ( "passive_opens" ) ]
350
- public int PassiceOpens { get ; internal set ; }
352
+ public long PassiceOpens { get ; internal set ; }
351
353
[ JsonProperty ( "curr_estab" ) ]
352
- public int CurrentEstablished { get ; internal set ; }
354
+ public long CurrentEstablished { get ; internal set ; }
353
355
[ JsonProperty ( "in_segs" ) ]
354
- public int InSegments { get ; internal set ; }
356
+ public long InSegments { get ; internal set ; }
355
357
[ JsonProperty ( "out_segs" ) ]
356
- public int OutSegments { get ; internal set ; }
358
+ public long OutSegments { get ; internal set ; }
357
359
[ JsonProperty ( "retrans_segs" ) ]
358
- public int RetransmittedSegments { get ; internal set ; }
360
+ public long RetransmittedSegments { get ; internal set ; }
359
361
[ JsonProperty ( "estab_resets" ) ]
360
- public int EstablishedResets { get ; internal set ; }
362
+ public long EstablishedResets { get ; internal set ; }
361
363
[ JsonProperty ( "attempt_fails" ) ]
362
- public int AttemptFails { get ; internal set ; }
364
+ public long AttemptFails { get ; internal set ; }
363
365
[ JsonProperty ( "in_errs" ) ]
364
- public int InErrors { get ; internal set ; }
366
+ public long InErrors { get ; internal set ; }
365
367
[ JsonProperty ( "out_rsts" ) ]
366
- public int OutResets { get ; internal set ; }
368
+ public long OutResets { get ; internal set ; }
367
369
}
368
370
}
369
371
@@ -397,9 +399,9 @@ public class DatumStats
397
399
[ JsonProperty ( "available_in_bytes" ) ]
398
400
public long AvailableInBytes { get ; internal set ; }
399
401
[ JsonProperty ( "disk_reads" ) ]
400
- public int DiskReads { get ; internal set ; }
402
+ public long DiskReads { get ; internal set ; }
401
403
[ JsonProperty ( "disk_writes" ) ]
402
- public int DiskWrites { get ; internal set ; }
404
+ public long DiskWrites { get ; internal set ; }
403
405
[ JsonProperty ( "disk_read_size" ) ]
404
406
public string DiskReadSize { get ; internal set ; }
405
407
[ JsonProperty ( "disk_read_size_in_bytes" ) ]
0 commit comments