[Logstash monitoring] Fix template to match event structure (elastic/elasticsearch#4613)

CPU stats were wrongly nested under "load". The correct nesting is os->cpu->load_average

Original commit: elastic/x-pack-elasticsearch@e3dc3765f6
This commit is contained in:
Suyog Rao 2017-01-12 16:55:26 -08:00 committed by GitHub
parent 0169c7055d
commit 89405c783f
1 changed files with 13 additions and 9 deletions

View File

@ -158,16 +158,20 @@
},
"os": {
"properties": {
"load": {
"cpu": {
"properties": {
"1m": {
"type": "half_float"
},
"5m": {
"type": "half_float"
},
"15m": {
"type": "half_float"
"load_average": {
"properties": {
"1m": {
"type": "half_float"
},
"5m": {
"type": "half_float"
},
"15m": {
"type": "half_float"
}
}
}
}
}