Custom Views: Is it possible to use Wildcards/Regex for Joined Column Service Names?

I like to create an overview of all disk states of all NAS. Sadly some of them have different service names for the same service like:

Disk Drive 1
Disk Disk 1
Disk HDD1

At the moment I added multiple joined columns as I did not found a way to use wildcards in the name:

A perfect solution would be “Disk (Drive | Disk |HDD)1” to get the state of the first Disk of all devices.

Did you tried ~Disk (Drive | Disk |HDD)1
Sometime you need the ~ in front to mark it as a regex but there is no clear rule for it.

regards

Michael

I’ve tried the following, but sadly nothing works :frowning:

~Disk (Drive | Disk |HDD)1
Disk (Drive | Disk |HDD)1
Disk D.*1
Disk [a-zA-Z ]+1
~Disk [a-zA-Z ]+1
~Disk*1
Disk%1
~Disk%1

Is it possible to overwrite SNMP service names (in Check_MK)?

EDIT: Yes it is. This solved my issue:

I added the rule as follows:
image

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed. Contact an admin if you think this should be re-opened.