I have json format data. I want to concatenate firstName and LastName.
I have tried by using mutate filter
filter{
mutate {
add_field => {
"Full Name" => "%{FirstName}%{LastName}"
}
}
}
But I am getting exactly the same in the output
like this, "Full Name" => "%{FirstName}%{LastName}"
My JSON file format is
{
"Details":{
"FirstName":"Padam",
"LastName":"Rai",
"City":"Umermot"
}
}
I think it is not working because of nesting. I am getting this format from RabbitMQ