Home > Mobile >  Grafana consolidate pod metrics
Grafana consolidate pod metrics

Time:10-08

I have a Kubernetes Pod which serves metrics for prometheus.

Once in a while I update the release and thus the pod gets restarted.

Prometheus safes the metrics but labels it according to the new pod name:

enter image description here

this is by prometheus' design, so its ok.

but if I display this data with grafana, Im getting this (the pods ahve been redeployed twice):

enter image description here

So for example the metric "Registered Users" now has 3 different colors because the source from it comes from 3 diffferent pods

I have some options. Maybe disregard the pod name in prometheus, but I consider that bad practise because I dont want to lose data.

So I think I have to consolidate this in grafana. But how I can I tell Grafana that I want to merge all data with container-name api-gateway-narkuma and disregard the label pods?

CodePudding user response:

You can do something like

max(users) without (instance, pod)
  • Related