Does anyone have any examples of how to display Kubernetes status conditions produced by kube-metrics-adapter?
My metrics look like this:
kube_horizontalpodautoscaler_status_condition{condition="AbleToScale",status="false"} 0
kube_horizontalpodautoscaler_status_condition{condition="AbleToScale",status="unknown"} 0```
I'd like to display this as one metric on a single panel, showing the value of the `status` label for the metric that has value 1. Ideally, I'd also be able to change the color based on the `status` label.
For example, I'd like this to display `true` in `green` with the current metric value. If the active condition changes, the panel could display `false` in `red`.