thank you sundareshr - this got me on the right track.
I tried the separate report, but it was only taking the last-assign stanza. i.e. UE_method was extracted but not UE_msg.
Continuing with this approach however, the following seems to work:
props.conf
REPORT-UEmsg = UE_msg
REPORT-UEmethod = UE_method
transforms.conf
[UE_msg]
REGEX = (?m)unhandled error.*(?System\D+\:.*)\.\s
[UE_method]
REGEX = (?m)unhandled error.*(?(SOURCE_B|SOURCE_C)\D+)\s
this has gotten me very close to what I need. I still am wrestling with the regex of the UE_method as it is extracting the rest of the stack trace instead of the specific line I want, but I will other posts for a solution and post a new one if needed.
thanks!
... View more