File tree Expand file tree Collapse file tree 5 files changed +5
-32
lines changed
Indices/Monitoring/IndicesStats Expand file tree Collapse file tree 5 files changed +5
-32
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public class ClusterIndicesStats
19
19
public FielddataStats Fielddata { get ; internal set ; }
20
20
21
21
[ JsonProperty ( "percolate" ) ]
22
- public PercolateStats Percolate { get ; internal set ; }
22
+ public PercolatorStats Percolate { get ; internal set ; }
23
23
24
24
[ JsonProperty ( "query_cache" ) ]
25
25
public QueryCacheStats QueryCache { get ; internal set ; }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ public class IndexStats
38
38
[ JsonProperty ( PropertyName = "fielddata" ) ]
39
39
public FielddataStats Fielddata { get ; set ; }
40
40
41
- [ JsonProperty ( PropertyName = "percolate " ) ]
42
- public PercolateStats Percolate { get ; set ; }
41
+ [ JsonProperty ( PropertyName = "percolator " ) ]
42
+ public PercolatorStats Percolator { get ; set ; }
43
43
44
44
[ JsonProperty ( PropertyName = "completion" ) ]
45
45
public CompletionStats Completion { get ; set ; }
Original file line number Diff line number Diff line change 493
493
<Compile Include =" CommonOptions\Stats\GetStats.cs" />
494
494
<Compile Include =" CommonOptions\Stats\IndexingStats.cs" />
495
495
<Compile Include =" CommonOptions\Stats\MergesStats.cs" />
496
- <Compile Include =" CommonOptions\Stats\PercolateStats .cs" />
496
+ <Compile Include =" CommonOptions\Stats\PercolatorStats .cs" />
497
497
<Compile Include =" CommonOptions\Stats\PluginStats.cs" />
498
498
<Compile Include =" CommonOptions\Stats\QueryCacheStats.cs" />
499
499
<Compile Include =" CommonOptions\Stats\RecoveryStats.cs" />
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ protected void Assert(IndexStats index)
73
73
index . Get . Should ( ) . NotBeNull ( ) ;
74
74
index . Indexing . Should ( ) . NotBeNull ( ) ;
75
75
index . Merges . Should ( ) . NotBeNull ( ) ;
76
- index . Percolate . Should ( ) . NotBeNull ( ) ;
76
+ index . Percolator . Should ( ) . NotBeNull ( ) ;
77
77
index . QueryCache . Should ( ) . NotBeNull ( ) ;
78
78
index . Recovery . Should ( ) . NotBeNull ( ) ;
79
79
You can’t perform that action at this time.
0 commit comments