Hi,
i have tried to Summarize the RAM of different maschines (Compute01 and Compute02) and according to the Docs (Data exploration using InfluxQL | InfluxDB OSS 1.5 Documentation) it should automatically calculate the Summary.
SELECT last("total") FROM "monitor"."autogen"."mem" WHERE time > now() - 24h AND ("host"='compute01' OR "host"='compute02') GROUP BY time(1m) FILL(null)
But when i take a look on the Output, it seems that influx is just grabbing the highest of both values and displays that.
Does anyone have an idea where i missed something?
Thanks
Pecadis