I am trying to build a regex to match strings as follows:
PDCS-MBX01$
pluto$
12-2423$
I tried using the following:
winlogbeat_event_data_SubjectUserName:(\w\W)+$
I thought the search should have been: [\w\W]+$, but Graylog does not like the [ or ] characters.
Can anyone assist with a regex that will be accepted by Graylog and match all three of the above string types?