Filter and modify using named text and value capture groups not working

Hi! I was trying to capture the id as display text and the whole message as value from a field, but I can’t get it to work. The problem is that the display text is the value. Any type of help would be super appreciated :slight_smile:

Message example is as follows:
Job: [FlowJob: [name=createAgreement]] completed with the following parameters: [{idRequest=60f9ad476c11c200017dc979, jobDate=1626975559230}] and the following status: [COMPLETED]
I was trying:
/idRequests=(?<text>\w+)|(?<value>.*)/

1 Like

Did you manage to find an answer to this? I am also stuck here.

Yep, this seams to be a bug.

I could also not get it to work with Grafana Version 8.1.7.

Got a test string with
“CN:3342424242 (Cus1)#C:3342424242#”

and the working regex “CN:(?[^#]+)|C:(?[^#]+)”

Brings me text and value correctly, but still the text is used as a value