from(bucket:"yourbucket/your_retention_policy")
|> range(start:-1h)
|> filter(fn: (r) =>
r._measurement == "host" and
r._field == "usage_system" and
r.cpu == "cpu-total" #This is your tag filter
)
@scott Thanks that was it!
I had a feeling it had something to do with the hyphen so I started renaming “interface-name” to “ifaceName”. After the rename my previous flux query worked as well.