- What Grafana version and what operating system are you using?
10.0 on Rocky 9.6
- What are you trying to achieve?
Time-series graphs - in this case of pod CPU usage
- How are you trying to achieve it?
Successfully designing a promQL query to fetch container_cpu_usage_seconds_total and using rate and grouping by container
- What happened?
This works fine but as well as a series for each grouped container, I am being returned a series whcih grafana is labelling ‘Value’ - in raw promQL GUI, this is the {} dataset. It seems to be some kind of summary but I don’t understand why it is being generated…
- What did you expect to happen?
I do not expect this additional data series
- Can you copy/paste the configuration(s) that you are having problems with?
sum(rate(container_cpu_usage_seconds_total[5m])) by (container) / sum(container_spec_cpu_quota/container_spec_cpu_period) by (container) * 100
- Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
None
- Did you follow any online instructions? If so, what is the URL?
Nothing particular - promQL docs