In Alertmanager 0.21 the following api request works great : /api/v2/silences?filter="alertname=~Memory.*"
The filter on a label with a "like" (~) works !
But in alertmanager 0.23, the same query returns : "bad matcher format: \"alertname=~Memory.*\""
I've found that the syntax have changed and with an equal filter it's ok without the " " in the query : /api/v2/silences?filter=alertname=MemoryHost
But if i add a ~ in the query like /api/v2/silences?filter=alertname=~Memory.* it returns "bad matcher format: \"alertname=~Memory.*\""
What is the syntax to get silences filter with a ~ ?