Hi there,
I am new to Grafana and hope my question is stated clear enough to understand
I have a similar problem to this stackoverflow question.
I want to combine two different variables (Prometheus Queries) in one label.
E.g. imagine the following variables:
Variable1 = label_values(node_load1{job="node"}, instance)
Variable2 = label_values(node_cpu_seconds_total, mode)
Variable1 delivers: 192.168.0.1, 192.168.0.2
Variable2 delivers: system, user, irq
Is it possible to combine both results into one label? The label would have the following drop down options: 192.168.0.1, 192.168.0.2, system, user, irq
Furthermore, is it possible to hide the unused or unchecked panels / rows similarily to the Panel & Rows repeat option?
Thanks in advance!