-
Notifications
You must be signed in to change notification settings - Fork 25
jupyterhub dashboard: hub filtering for server start failures panel #173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jupyterhub dashboard: hub filtering for server start failures panel #173
Conversation
jnywong
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch! 🏈
jnywong
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add filter to a couple of other panels too?
| sum( | ||
| # kube_pod_info.node identifies the pod node, | ||
| # while kube_pod_labels.node is the metrics exporter's node | ||
| kube_pod_info{node!=""} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| kube_pod_info{node!="", namespace=~"$hub"} |
| sum by (le) ( | ||
| jupyterhub_server_spawn_duration_seconds_bucket | ||
| - | ||
| jupyterhub_server_spawn_duration_seconds_bucket | ||
| offset $__rate_interval | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| sum by (le) ( | |
| jupyterhub_server_spawn_duration_seconds_bucket{namespace=~"$hub"} | |
| - | |
| jupyterhub_server_spawn_duration_seconds_bucket{namespace=~"$hub"} | |
| offset $__rate_interval | |
| ) |
I saw startup failures in a dashboard for a non-staging hub, but it was a false alarm. Even though I had selected one specific hub using a dashboard variable, I still saw other hubs startup failures in the server start failures panel. This PR fixes that!