@@ -13,13 +13,13 @@ public class NodeStats
13
13
14
14
[ JsonProperty ( "name" ) ]
15
15
public string Name { get ; internal set ; }
16
-
16
+
17
17
[ JsonProperty ( "transport_address" ) ]
18
18
public string TransportAddress { get ; internal set ; }
19
19
20
20
// TODO: Rename to Host in 2.0
21
21
[ JsonProperty ( "host" ) ]
22
- public string Hostname { get ; internal set ; }
22
+ public string Hostname { get ; internal set ; }
23
23
24
24
[ JsonProperty ( "indices" ) ]
25
25
public NodeStatsIndexes Indices { get ; internal set ; }
@@ -167,8 +167,10 @@ public class MemoryStats : BaseMemoryStats
167
167
public int UsedPercent { get ; internal set ; }
168
168
[ JsonProperty ( "actual_free" ) ]
169
169
public string ActualFree { get ; internal set ; }
170
+ [ Obsolete ]
171
+ public long ActualFreeInbytes { get { return ActualFreeInBytes ; } internal set { ActualFreeInBytes = value ; } }
170
172
[ JsonProperty ( "actual_free_in_bytes" ) ]
171
- public long ActualFreeInbytes { get ; internal set ; }
173
+ public long ActualFreeInBytes { get ; internal set ; }
172
174
[ JsonProperty ( "actual_used" ) ]
173
175
public string ActualUsed { get ; internal set ; }
174
176
[ JsonProperty ( "actual_used_in_bytes" ) ]
@@ -250,6 +252,10 @@ public class MemoryStats
250
252
public string HeapCommitted { get ; internal set ; }
251
253
[ JsonProperty ( "heap_committed_in_bytes" ) ]
252
254
public long HeapCommittedInBytes { get ; internal set ; }
255
+ [ JsonProperty ( "heap_max" ) ]
256
+ public string HeapMax { get ; internal set ; }
257
+ [ JsonProperty ( "heap_max_in_bytes" ) ]
258
+ public long HeapMaxInBytes { get ; internal set ; }
253
259
[ JsonProperty ( "non_heap_used" ) ]
254
260
public string NonHeapUsed { get ; internal set ; }
255
261
[ JsonProperty ( "non_heap_used_in_bytes" ) ]
0 commit comments