Regex Exclude Zabbix mertics

I am trying to modify a grafana zabbix template so that I can specifically exclude any metric with the word “Miniport” in it.

Currently I have a grafana dashboard variable with the following regex in the query.
/(?:Incoming|Outgoing) network traffic on (.*)/
it pulls back all the metrics with names that match the above query.
What I want to do is modify it so that it pulls that same list minus any entry with “miniport” in the name.

Might anyone have a suggestion?

Thank you,
Carl Slaughter
Network Systems Engineer

This can be closed… I have identified the solution.

/(?:Incoming|Outgoing) network traffic on ((?!WAN Miniport).*)/