Marvel: Update Node Stats with os.cpu.load_average

Original commit: elastic/x-pack-elasticsearch@fa8ed35105
This commit is contained in:
Tanguy Leroux 2015-11-18 18:57:55 +01:00
parent 5f30602d1a
commit c190894228
3 changed files with 7 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class NodeStatsRenderer extends AbstractRenderer<NodeStatsMarvelDoc> {
"node_stats.fs.total.total_in_bytes",
"node_stats.fs.total.free_in_bytes",
"node_stats.fs.total.available_in_bytes",
"node_stats.os.load_average",
"node_stats.os.cpu.load_average",
"node_stats.process.cpu.percent",
"node_stats.process.max_file_descriptors",
"node_stats.process.open_file_descriptors",

View File

@ -241,6 +241,9 @@
"fs": {
"type": "object"
},
"os": {
"type": "object"
},
"process": {
"type": "object"
},

View File

@ -29,7 +29,9 @@
}
},
"os": {
"load_average" : 0.66
"cpu": {
"load_average": 0.66
}
},
"process": {
"open_file_descriptors": 235,