When creating a custom alarm view in USM, how can I filter on more than one value in a single column, such as multiple probes or suppression keys?
The ‘filters’:[] array supports object notation (instead of simple string expression) like this:
'filters':[{'field':'probe','value':'cdm|rsp','operator':'matches'}]
'filters':[{'field':'assigned_to','value':'administrator|user123','operator':'matches'}]
'filters':[{'field':'supp_key','value':'cdm|rsp','operator':'matches'}]
As long as the "matches" operator is specified, a regular expression may be used for "value".
For more detail about creating custom USM views, see the CA UMP Documentation.