Omar Agudo
Results
2
comments of
Omar Agudo
@sanderson The output of the query removing the statements after map is: from(bucket:"bucket/autogen") |> range(start:last_hour) |> filter(fn: (r) => r._measurement == "myMeasurement" and r.key =~ /^myKey$/ and r._field == "myField")...
After adding sum the result is the following: from(bucket:"bucket/autogen") |> range(start:last_hour) |> filter(fn: (r) => r._measurement == "myMeasurement" and r.key =~ /^myKey$/ and r._field == "myField") |> group(columns: ["columnA", "columnB"],...