Field SUM Value

i have one query which collect different data but i need to sum and plot as single graph is it possible?

Below my query

SELECT mean(“Channel 1 VCGr 0”), mean(“Channel 1 VCGr 1”), mean(“Channel 1 VCGr 2”), mean(“Channel 1 VCGr 3”) FROM “snmp” WHERE (“agent_host” = ‘10.125.1.4’) AND $timeFilter GROUP BY time($__interval) fill(null)

photo5771375580200153467

How about simply replacing the commas between your mean() functions with plus
signs, so that the mean values get added together?

Or have I misunderstood what it is you want to get the sum of?

Antony.

1 Like