You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this dashboard, I'm frequently in a situation where I would like to know which node a specific instance of the database is currently running on. This is easily inspected when doing some k8s debugging, but it would be good to have that on the dashboard directly.
I've implemented it on my end, and it looks like this:
To get everything still into a single line, I've removed some of the space from the gauge as well as the instance field. I'm doing a table query on kube_pod_info{namespace=~"$namespace",pod=~"$instances"} to fetch the information and displaying the node in the stats panel. I wanted to try submitting a PR for that, but when saving the panel I got ~900 changes, as .json is just not the best format for collaborative work. So would be nice if someone of the maintainers could consider adding this to the dashboard.
The text was updated successfully, but these errors were encountered:
When using this dashboard, I'm frequently in a situation where I would like to know which node a specific instance of the database is currently running on. This is easily inspected when doing some k8s debugging, but it would be good to have that on the dashboard directly.
I've implemented it on my end, and it looks like this:
To get everything still into a single line, I've removed some of the space from the gauge as well as the instance field. I'm doing a table query on
kube_pod_info{namespace=~"$namespace",pod=~"$instances"}
to fetch the information and displaying thenode
in thestats
panel. I wanted to try submitting a PR for that, but when saving the panel I got ~900 changes, as.json
is just not the best format for collaborative work. So would be nice if someone of the maintainers could consider adding this to the dashboard.The text was updated successfully, but these errors were encountered: