Remove expectations about store throttling stats now that it has been removed.
Original commit: elastic/x-pack-elasticsearch@244afb234a
This commit is contained in:
parent
67cc424303
commit
a5e410ba59
|
@ -58,7 +58,6 @@ public class IndexStatsResolver extends MonitoringIndexNameResolver.Timestamped<
|
|||
"index_stats.primaries.segments.version_map_memory_in_bytes",
|
||||
"index_stats.primaries.segments.fixed_bit_set_memory_in_bytes",
|
||||
"index_stats.primaries.store.size_in_bytes",
|
||||
"index_stats.primaries.store.throttle_time_in_millis",
|
||||
"index_stats.primaries.refresh.total_time_in_millis",
|
||||
"index_stats.total.docs.count",
|
||||
"index_stats.total.fielddata.memory_size_in_bytes",
|
||||
|
@ -89,7 +88,6 @@ public class IndexStatsResolver extends MonitoringIndexNameResolver.Timestamped<
|
|||
"index_stats.total.segments.version_map_memory_in_bytes",
|
||||
"index_stats.total.segments.fixed_bit_set_memory_in_bytes",
|
||||
"index_stats.total.store.size_in_bytes",
|
||||
"index_stats.total.store.throttle_time_in_millis",
|
||||
"index_stats.total.refresh.total_time_in_millis");
|
||||
FILTERS = Collections.unmodifiableSet(filters);
|
||||
}
|
||||
|
|
|
@ -38,7 +38,6 @@ public class NodeStatsResolver extends MonitoringIndexNameResolver.Timestamped<N
|
|||
"node_stats.indices.fielddata.memory_size_in_bytes",
|
||||
"node_stats.indices.fielddata.evictions",
|
||||
"node_stats.indices.store.size_in_bytes",
|
||||
"node_stats.indices.store.throttle_time_in_millis",
|
||||
"node_stats.indices.indexing.throttle_time_in_millis",
|
||||
"node_stats.indices.indexing.index_total",
|
||||
"node_stats.indices.indexing.index_time_in_millis",
|
||||
|
|
|
@ -119,9 +119,6 @@
|
|||
"properties": {
|
||||
"size_in_bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"throttle_time_in_millis": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -253,9 +250,6 @@
|
|||
"properties": {
|
||||
"size_in_bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"throttle_time_in_millis": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -547,9 +541,6 @@
|
|||
"properties": {
|
||||
"size_in_bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"throttle_time_in_millis": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue