I have following logstash conf snippet, but it doesn't work. I got the idea of subfield from this stackoverflow thread. How can I make it to work? I am trying to split the http_refer field in my access log. Thanks.
filter {
kv {
source => "@message[http_referer]"
field_split => "&?"
value_split => "="
add_tag => "splited"
}
}