Just to be sure i’m on the same page, could someone show me the equivalent Flux queries for the below influxql ones? I use them to get byte counters from influxdb and draw gigabit per second graphs grouped by node name.
SELECT non_negative_derivative(sum(“dnlnk-bytes”), 5m) *8/300 AS “apn dnlk+uplk” FROM “apnSch1” WHERE $timeFilter GROUP BY time(5m), node fill(null)
SELECT non_negative_derivative(max(“rxbytes”), 5m) *8/300 FROM “portSch1” WHERE $timeFilter GROUP BY time(5m), node fill(null)