Hello, I would like some help with my little problem. I would like to be able to automatically rename fields that I get with my snmp plugin in input.
I obtain this result:
"host" => [
[1] {
"iso...hrProcessorLoad" => 10
},
[2] {
"iso...hrProcessorLoad" => 9
}
],
At the moment I use this:
mutate {
rename => { "[host][1][iso...hrProcessorLoad]" => ProcessorLoad1
}
But I would like to automate this function.
I thank you in advance for your answers