Skip to content
Discussion options

You must be logged in to vote

I was able to figure this out. Here's the fix:

        match(msg, r'^\S')
        # match(msg, r'^([[:lower:]]+\\.|\\s)')

The regex that I was using would match on EVERY indented stack frame line which meant that each line was getting flushed as it's own event. As soon as the expression is changed to only look for a line that starts with whitespace, the internal logic that sets the "oh, this is a continuation, don't flush $previousLine" flag is set, properly.

The other question I had was "why can't I use a starts_when and ends_when together. This is partially answered in #9615

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by kquinsland
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
transform: reduce Anything `reduce` transform related
1 participant