Hello, how can I manage log lines which have multiple /n and /r characters with Grok?
My situation is like:
CSeq:696603683 ACK\r\nMax-Forwards:70\r\nContent-Length:0
And I'm interested in CSeq and Content-Length. Max-Forwards is not always present, so I want to ignore it.
I'm using this Grok pattern:
grok {
match => {
"message" => "%{BASE10NUM:CSeqSequenceNumber}\s%{GREEDYDATA:CSeqMethod}\s+(((.|\n)*))?Content-Length:\s%{BASE10NUM:Content-Length}"
}
But the pipeline does not start, and the reason is the pattern (((.|\n)*))?
which I have used to ignore Max-Forwards:70\r\n
.