I'm using logstash to parse a value like:
|SERVLETSESSIONS=|
My bit to capture it is:
\|SERVLETSESSIONS=(?<servlet_sessions>[0-9]*)\|
I do not get an error, and all my other fields match, but I think I should get an empty value like "servlet_sessions" => ""
in my stdout { codec => rubydebug } }
but I do not have the servlet_sessions
key there.
Any ideas?