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
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 errorQuery <query> has multiple time clauses. Can't parse
Though it is supported by InfluxDB itself