In a Service Overview Manager I would like to retrieve data with a filter that either ends with DVB-C or ends with IPTV.
Currently I have everything working nicely with just one filter:
<AlarmLevelLink id="1" remoteElement="2105:2000:2024" filters="VALUE=2003 == *DVB-C" destination="2205:DISPLAY:5002" />
What do I need to change in the definition?
Also note that the value in column 2003 can end with any other value, we only want those with "DVB-C" or "IPTV"
You can add multiple filters by separating them with a semicolon, so in your case that would be:
<AlarmLevelLink id="1" remoteElement="2105:2000:2024" filters="VALUE=2003 == *DVB-C;VALUE=2003 == *IPTV" destination="2205:DISPLAY:5002" />