Skip to content

Commit

Permalink
Filter labels explicitly in table panels of cluster dashboard
Browse files Browse the repository at this point in the history
Signed-off-by: Knut Götz <[email protected]>
  • Loading branch information
knutgoetz committed Oct 28, 2023
1 parent 4d364c3 commit e9869df
Showing 1 changed file with 46 additions and 30 deletions.
76 changes: 46 additions & 30 deletions monitoring/configs/dashboards/cluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,29 +557,29 @@
"id": "organize",
"options": {
"excludeByName": {
"Time": true,
"Value": true,
"__name__": true,
"Time": false,
"Value": false,
"__name__": false,
"app": true,
"chart_name": true,
"chart_source_name": true,
"container": true,
"customresource_group": true,
"chart_name": false,
"chart_source_name": false,
"container": false,
"customresource_group": false,
"customresource_kind": false,
"customresource_version": true,
"endpoint": true,
"customresource_version": false,
"endpoint": false,
"exported_namespace": false,
"gotk_type": true,
"instance": true,
"job": true,
"instance": false,
"job": false,
"kubernetes_namespace": true,
"kubernetes_pod_name": true,
"namespace": true,
"pod": true,
"namespace": false,
"pod": false,
"pod_template_hash": true,
"revision": true,
"service": true,
"source_name": true,
"revision": false,
"service": false,
"source_name": false,
"status": true,
"suspended": true,
"type": true
Expand Down Expand Up @@ -612,6 +612,14 @@
"ready": "Status"
}
}
},
{
"id": "filterFieldsByName",
"options": {
"include": {
"pattern": "(Namespace|Kind|Name|Status)"
}
}
}
],
"type": "table"
Expand Down Expand Up @@ -747,32 +755,32 @@
"id": "organize",
"options": {
"excludeByName": {
"Time": true,
"Value": true,
"__name__": true,
"Time": false,
"Value": false,
"__name__": false,
"app": true,
"bucket_name": true,
"container": true,
"customresource_group": true,
"container": false,
"customresource_group": false,
"customresource_kind": false,
"customresource_version": true,
"endpoint": true,
"customresource_version": false,
"endpoint": false,
"exported_namespace": false,
"gotk_type": true,
"instance": true,
"job": true,
"instance": false,
"job": false,
"kubernetes_namespace": true,
"kubernetes_pod_name": true,
"namespace": true,
"pod": true,
"namespace": false,
"pod": false,
"pod_template_hash": true,
"ready": false,
"revision": true,
"service": true,
"revision": false,
"service": false,
"status": true,
"suspended": true,
"type": true,
"url": true
"url": false
},
"indexByName": {
"Time": 0,
Expand Down Expand Up @@ -802,6 +810,14 @@
"ready": "Status"
}
}
},
{
"id": "filterFieldsByName",
"options": {
"include": {
"pattern": "(Namespace|Kind|Name|Status)"
}
}
}
],
"type": "table"
Expand Down

0 comments on commit e9869df

Please sign in to comment.