Hie All,
I want to rename fields names from this : "[url][path]" => to "url path" and "[server][domain]" => "Server domain"
We can use mutate filter plugin (as mutate uses lot of cpu) ,but I have nearly 50 fields names to be renames is their any other alternative to achieve this ?
mutate {
rename [ "[url][path]" => "url path",
"[server][domain]" => "Server domain"]
}
TIA.