I am using Filebeat multiline pattern in filebeat.yml that is taking its input from a single file that has the following line indicating the start of a request
2016-10-06 09:40:01.775 DEBUG 10454 --- [XNIO-2 task-9] c.a.a.s.abc.efgh.server: requestStartIdentifier: Identifier
filebeat.yml
multiline:
pattern: 'Identifier$'
negate: false
match: after
I use the above config to match 'Identifier ' in the line . can anyone please suggest me the pattern to select whole string in the line that ends with Identifier .