Panel Filter issues

I am trying to filter results in multiple panels but cannot get it to work.

Here is the working panel (notice the host filter at the top)

Now if I try and add an AND clause in there, such as this

I get no data.

Now I was able to implement this in another panel which did work
(I can only put 2 media items per post cause I am a noob)

But as you can see the original query was selecting host so I think that is why this isn’t working but still am lost as to what the solution.

BTW this is not my work I pulled this from this project.

Which is awesome and already has a filter setup for the application traffic category I am just trying to filter by host to get the panels to respond to host specific filtering as well.

Thanks in advance!

Here is the other panel that did work (I bolded my added part)

SELECT non_negative_derivative(mean(“bytes_rcvd”), 1s) *8 FROM “host:traffic” WHERE (“host” =~ /^Host/) AND timeFilter GROUP BY time(__interval), “host” fill(null)