Remove index thread pool from monitoring filters (elastic/x-pack-elasticsearch#4409)

The index thread pool is gone, so the index thread pool stats do not any
longer need to be whitelisted in the monitoring stats.

Original commit: elastic/x-pack-elasticsearch@83f7742805
This commit is contained in:
Jason Tedor 2018-04-18 21:02:06 -04:00 committed by GitHub
parent d0ee36b192
commit 4e376070a3
2 changed files with 3 additions and 12 deletions

View File

@ -147,9 +147,6 @@ public class NodeStatsMonitoringDoc extends FilteredMonitoringDoc {
"node_stats.thread_pool.get.threads",
"node_stats.thread_pool.get.queue",
"node_stats.thread_pool.get.rejected",
"node_stats.thread_pool.index.threads",
"node_stats.thread_pool.index.queue",
"node_stats.thread_pool.index.rejected",
"node_stats.thread_pool.management.threads",
"node_stats.thread_pool.management.queue",
"node_stats.thread_pool.management.rejected",

View File

@ -240,25 +240,20 @@ public class NodeStatsMonitoringDocTests extends BaseFilteredMonitoringDocTestCa
+ "\"queue\":66,"
+ "\"rejected\":67"
+ "},"
+ "\"index\":{"
+ "\"management\":{"
+ "\"threads\":68,"
+ "\"queue\":69,"
+ "\"rejected\":70"
+ "},"
+ "\"management\":{"
+ "\"search\":{"
+ "\"threads\":71,"
+ "\"queue\":72,"
+ "\"rejected\":73"
+ "},"
+ "\"search\":{"
+ "\"watcher\":{"
+ "\"threads\":74,"
+ "\"queue\":75,"
+ "\"rejected\":76"
+ "},"
+ "\"watcher\":{"
+ "\"threads\":77,"
+ "\"queue\":78,"
+ "\"rejected\":79"
+ "}"
+ "},"
+ "\"fs\":{"
@ -356,7 +351,6 @@ public class NodeStatsMonitoringDocTests extends BaseFilteredMonitoringDocTestCa
threadpools.add(new ThreadPoolStats.Stats("bulk", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("generic", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("get", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("index", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("management", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("search", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));
threadpools.add(new ThreadPoolStats.Stats("watcher", (int) ++iota, (int) ++iota, (int) no, ++iota, (int) no, no));