- Is it possible to sum multiple series in the same query using Flux without joining each table? I did use the following nested query in InfluxQL but cannot seem to work out how to do the same thing using Flux.
SELECT sum(“pos”) + sum(“len”) FROM (SELECT last(“position”) as “pos”, last(“length”) as “len” FROM “measurement” WHERE tag =~ /some_regex/
- Are more join types in the works/far away? I’d like to reduce my reliance on Kapacitor where possible.