Statserver filters

hello,

i am trying to figure out if it is possible to create a filter to capture any value when applied to a statistic.
For example, i want to apply the statistic to a count of inbound calls, but filter out against userdata (header=‘status’, values=credit, balance, owing and so on).
I have tried to create this filter :
name=status
value=PairExists(“status”, “*”)

would this be the correct way to do it?
thanks,

You have to also enable wildcard filters on statserver config:

[statserver]
filters-allow-wildcards-in-values=yes

[Filters]
nameOfFilter=PairExists(“udataName”,“*”)

Be careful with the quotes you are using, there are some similar to " but look like yours here, like in italic, those won’t work.