Hello Dojo Community,
I’m looking for some advice on filtering a specific range of Event IDs (57000 - 57100) within DataMiner, specifically using the Parameter Description field in Alarm Console .
The use case is to isolate these events based on their IDs using either:
Wildcard syntax
Regex pattern
The goal is to apply this filter cleanly without resorting to scripting, strictly within the GUI filter options available under Parameter Description.
Queries:
-
What would be the correct wildcard or pattern syntax to capture this numeric range?
-
Are there any limitations or best practices around applying such a filter on Event IDs via Parameter Description?
I appreciate any proven examples or guidance from those who've implemented similar filtering.
Thanks in advance!
Samson
I'm not certain if this is a correct interpretation of your use-case but I did a mockup below assuming each alarm represents an event.
Alarm (Events):
Filter (Regex):
fs input 1 (?:570\d{2}|57100)
Output:

Thanks for the regex, I tweaked it a bit adding some strings and I have been able to get what I was out looking for in the first place. Since I can't upload screenshot as a comment, I will use 'start a new answer' option to show the output