File tree 1 file changed +4
-4
lines changed
benchmarks/src/main/java/org/elasticsearch/benchmark/xcontent
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public void setup() throws IOException {
100
100
case "all_field" :
101
101
Set <String > allKeys = new HashSet <>(keys );
102
102
allKeys .remove ("cluster_uuid" );
103
- includesFilters = FilterPath .compile (keys );
103
+ includesFilters = FilterPath .compile (allKeys );
104
104
break ;
105
105
case "wildcard_field" :
106
106
Set <String > wildcardField = new HashSet <>(Arrays .asList ("*stats" ));
@@ -115,9 +115,9 @@ public void setup() throws IOException {
115
115
"*stats*.xpack" ,
116
116
"*stats.*.segments" ,
117
117
"*stat*.*.data*" ,
118
- "*stats.**.request_cache" ,
119
- "*stats.**.stat" ,
120
- "*stats.**.threads" ,
118
+ inclusive ? "*stats.**.request_cache" : "*stats. *.request_cache" ,
119
+ inclusive ? "*stats.**.stat" : "*stats. *.stat" ,
120
+ inclusive ? "*stats.**.threads" : "*stats. *.threads" ,
121
121
"*source_node.t*"
122
122
)
123
123
);
You can’t perform that action at this time.
0 commit comments