Using Prometheus as datasource, in Grafana, I have a Table visualization that lists kubernetes containers and their versions using this query:
kube_pod_container_info{namespace="$namespace", pod=~"pod-.*"}
Example table looks like this:
| pod | Version |
| -------------| ------- |
| pod-firstapp | 123 |
| pod-secondapp| 456 |
This only lists unique versions of any given pod if there are multiple instances of it, so in case of a container being upgraded, or stuck during an upgrade, two rows for the same pod will appear, with different versions, like so:
| pod | Version |
| -------------| ------- |
| pod-firstapp | 123 |
| pod-firstapp | 124 |
| pod-secondapp| 456 |
How could I highlight that 2nd row if and when it appears?
The only way I can think of is via Value mappings but I don't know if it's possible to set those to compare two values.
Thanks in advance.