Hello,
I need help with the REGEX for my blacklist. I have the following file pattern on the source:
indexserver_ls5783.30240.341.trc
but sometimes the end users switch additional traces, which follow the pattern:
indexserver_ls5783.30240_trc115.trc
On the example above, the user activated additional trace with the context name "trc115", which has been appended to the name after underline replacing the tracefile number.
Now, I would like to blacklist these user defined traces.
The starting point for the blacklist regex would be the 5 digits (this is the port number and does not have to be always 30240) + "_" + string + ".trc"
Could you help me with the corresponding blacklist REGEX?
Kind Regards,
Kamil
Hi @damucka,
Try this regex for blacklist indexserver_ls\d+\.\d+_\w+\.trc
Hi @damucka,
Try this regex for blacklist indexserver_ls\d+\.\d+_\w+\.trc