Skip to content

Commit

Permalink
Grafana: collapse panels on master dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaniuk committed Sep 24, 2019
1 parent 2bb3d20 commit 5fb2154
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@
title="Master dashboard",
rows=[
d.Row(title="Clusterloader", panels=CLUSTERLOADER_PANELS),
d.Row(title="Overall cluster health", panels=HEALTH_PANELS),
d.Row(title="etcd", panels=ETCD_PANELS),
d.Row(title="kube-apiserver", panels=APISERVER_PANELS),
d.Row(title="Overall cluster health", panels=HEALTH_PANELS, collapse=True),
d.Row(title="etcd", panels=ETCD_PANELS, collapse=True),
d.Row(title="kube-apiserver", panels=APISERVER_PANELS, collapse=True),
d.Row(
title="kube-controller-manager",
panels=[
Expand All @@ -342,7 +342,8 @@
legend="{{name}}",
)
],
collapse=True,
),
d.Row(title="Master VM", panels=VM_PANELS),
d.Row(title="Master VM", panels=VM_PANELS, collapse=True),
],
).auto_panel_ids()
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
"title": "Clusterloader"
},
{
"collapse": false,
"collapse": true,
"editable": true,
"height": "300px",
"panels": [
Expand Down Expand Up @@ -799,7 +799,7 @@
"title": "Overall cluster health"
},
{
"collapse": false,
"collapse": true,
"editable": true,
"height": "300px",
"panels": [
Expand Down Expand Up @@ -2467,7 +2467,7 @@
"title": "etcd"
},
{
"collapse": false,
"collapse": true,
"editable": true,
"height": "300px",
"panels": [
Expand Down Expand Up @@ -3821,7 +3821,7 @@
"title": "kube-apiserver"
},
{
"collapse": false,
"collapse": true,
"editable": true,
"height": "300px",
"panels": [
Expand Down Expand Up @@ -3927,7 +3927,7 @@
"title": "kube-controller-manager"
},
{
"collapse": false,
"collapse": true,
"editable": true,
"height": "300px",
"panels": [
Expand Down

0 comments on commit 5fb2154

Please sign in to comment.