[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:
parent
0169c7055d
commit
89405c783f
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue