Hi Team,
I am trying to add a field but not getting expected result please assist, surely i am overlooking something. It's logstash-2.3.2-1
PFB Details:
grok{
match => ["message", "%{WORD:appname}"]
}
mutate {
add_field => { "ApplicationName" => "%{appname}" }
}
========
appname=Testing123
I am expecting "ApplicationName" = Testing123 but i am getting:
"ApplicationName" => "%{appname}"
Thanks & Regards,