File tree 2 files changed +17
-0
lines changed
src/Nest/Indices/Monitoring/IndicesStats
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ public class IndexStats
48
48
[ DataMember ( Name = "segments" ) ]
49
49
public SegmentsStats Segments { get ; set ; }
50
50
51
+ [ DataMember ( Name = "shard_stats" ) ]
52
+ public ShardTotalStats ShardStats { get ; set ; }
53
+
51
54
[ DataMember ( Name = "store" ) ]
52
55
public StoreStats Store { get ; set ; }
53
56
Original file line number Diff line number Diff line change
1
+ // Licensed to Elasticsearch B.V under one or more agreements.
2
+ // Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3
+ // See the LICENSE file in the project root for more information
4
+
5
+ using System . Runtime . Serialization ;
6
+
7
+ namespace Nest
8
+ {
9
+ public class ShardTotalStats
10
+ {
11
+ [ DataMember ( Name = "total_count" ) ]
12
+ public long TotalCount { get ; set ; }
13
+ }
14
+ }
You can’t perform that action at this time.
0 commit comments