The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
I'm plotting data from KairosDB related to host status (cpu, memory, etc.)
I'm trying to generate sums, for example sum all CPU usage for all hosts of a particular subset, so that we can have a nice line that says how much load is there for real. I do not want an average.
This is the query I build:
The plot shows something that is not a sum, more like an average. If I look at the request in the browser I see this:
There is my sum aggregator, but there is also an avg aggregator with an interval of 15 seconds that I have never defined.
The downsampling is also set to (NONE)
Grafana 3.1.1-1470047149 (ubuntu trusty)
I'm plotting data from KairosDB related to host status (cpu, memory, etc.)
I'm trying to generate sums, for example sum all CPU usage for all hosts of a particular subset, so that we can have a nice line that says how much load is there for real. I do not want an average.
This is the query I build:
The plot shows something that is not a sum, more like an average. If I look at the request in the browser I see this:
There is my sum aggregator, but there is also an avg aggregator with an interval of 15 seconds that I have never defined. The downsampling is also set to (NONE)
Any hint?