You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have mutiple metrics in one query, eg: SELECT derivative(mean("value"), 1s) FROM "interface_rx" WHERE ("instance" = 'eth0' AND "type" = 'if_octets') AND time >= now() - 24h GROUP BY time(2m);SELECT derivative(mean("value"), 1s) FROM "interface_tx" WHERE ("instance" = 'eth0' AND "type" = 'if_octets') AND time >= now() - 24h GROUP BY time(2m)
You get an error Query <query> has multiple time clauses. Can't parse
Though it is supported by InfluxDB itself
The text was updated successfully, but these errors were encountered:
When you have mutiple metrics in one query, eg:
SELECT derivative(mean("value"), 1s) FROM "interface_rx" WHERE ("instance" = 'eth0' AND "type" = 'if_octets') AND time >= now() - 24h GROUP BY time(2m);SELECT derivative(mean("value"), 1s) FROM "interface_tx" WHERE ("instance" = 'eth0' AND "type" = 'if_octets') AND time >= now() - 24h GROUP BY time(2m)
You get an error
Query <query> has multiple time clauses. Can't parse
Though it is supported by InfluxDB itself
The text was updated successfully, but these errors were encountered: