Hi All,
Iam trying to parse the events using kv filter ,
my kibana looks likes this
How to make just
from : ebay@ebay.com
but iam getting like 78AE89C45C: from : ebay@ebay.com
moreover iam getting duplicate fields as well, how to remove it .
my logstash config looks like this
input {
udp {
port => 5540
}
}
filter{
json{
source => "message"
}
kv {
source => "MESSAGE"
remove_field => ["MESSAGE"]
value_split => "="
field_split => ","
trim_value => "<>"
}
}
Please do help me in fixing this issue ,really need it .
Thanks,
Raj