You may want to doublecheck your line breaking. in the props.conf Docs page it says " * When using LINE_BREAKER to delimit events, SHOULD_LINEMERGE should be set to false, to ensure no further combination of delimited events occurs."
SHOULD_LINEMERGE=true
LINE_BREAKER=([\r\n]+)
SHOULD_LINEMERGE says to try and merge lines together, but LINE_BREAKER=([\r\n]+) says to event break on every line.
The test is going to be to check out the SQL message (Lines 7-11 in your original post). These should be interpreted as one event:
04/10/19 11:52:45 (275) Worker-Standard:JDBCProbe-69923714db3cf300e6067742399619af SELECT DISTINCT pco.PCO_Ref, pco.Act_Plan, pco.Description, pco.Impact, pco.Prioritet, pco.risk, pco.Txt_type, convert(varchar(MAX), pco.Txt) as Txt, pco.Urgency, status.CloseType, status.PCOClose, status.PCOPlan2, status.PCOrelease3, act.SenesteStart, act.SenesteEnd
FROM "PobPco"."dbo"."PCO" pco
join "PobPco"."dbo"."PCO_status" status on pco.PCO_Ref = status.PCO_Ref
FULL outer join "PobPco"."dbo"."Act" act on pco.PCO_Ref = act.PCO_Ref and (act.Sequence='430' OR act.Sequence='491')
Here is what I see as correct line breaking with the original config I posted. Where there something that was not working? It appears to work in the GDE app, I can't figure out how to get a decent sized pic, but checkout https://i.imgur.com/bCk91rM.png
... View more