[Monitoring UI] Cleanup Cluster Overview and Node Summary

This cleans up some of the reported stats to be a little clearer, including making the JVM Heap chart behave like Kibana's memory chart. This solves two problems: you can now determine the max heap size and you know what "x%" actually means relative to it.

Original commit: elastic/x-pack-elasticsearch@450f6fd546
This commit is contained in:
Chris Earle 2016-09-13 16:34:22 -04:00
parent 6d4e4f5131
commit 6085c5aba9
2 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,8 @@ public class ClusterStatsResolver extends MonitoringIndexNameResolver.Timestampe
"cluster_stats.nodes.count.total",
"cluster_stats.indices.count",
"cluster_stats.indices.shards.total",
"cluster_stats.indices.shards.primaries",
"cluster_stats.indices.shards.replication",
"cluster_stats.indices.shards.index.replication.min",
"cluster_stats.indices.docs.count",
"cluster_stats.indices.store.size_in_bytes",

View File

@ -70,6 +70,7 @@ public class NodeStatsResolver extends MonitoringIndexNameResolver.Timestamped<N
"node_stats.process.cpu.percent",
"node_stats.process.max_file_descriptors",
"node_stats.process.open_file_descriptors",
"node_stats.jvm.mem.heap_max_in_bytes",
"node_stats.jvm.mem.heap_used_in_bytes",
"node_stats.jvm.mem.heap_used_percent",
"node_stats.jvm.gc.collectors.young",