-
Notifications
You must be signed in to change notification settings - Fork 243
Open
Labels
Description
I expected this to work:
- match: "airflow_local(.+)"
match_type: regex
action: drop
name: "dropped"
- match: "(.+)_task_mem_usage_(.*)"
match_type: regex
action: drop
name: "dropped"
- match: "(.+)_task_cpu_usage_(.*)"
match_type: regex
action: drop
name: "dropped"
But only this works:
- match: "."
match_type: regex
action: drop
name: "dropped"
Is dropping on a single-match basis not possible? I've only been able to get the catch-all to work.
Reactions are currently unavailable