Skip to content
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

Add multicluster dashboards docs #1464

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions docs/multicluster-dashboards.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
weight: 660
toc: true
title: Multi-cluster dashboard support
menu:
docs:
parent: kube
lead: Enable multi-cluster dashboard support in grafana
---

#Prerequisites

Let's say we have two clusters, `east` and `west`.

Each prometheus cluster should have `externalLabels` configured:

```jsonnet
# east
values+:: {
prometheus+: {
externalLabels: {
cluster: "east",
},
},
}

# west
values+:: {
prometheus+: {
externalLabels: {
cluster: "west",
},
},
}
```

# Enable multi cluster support

At the time of writing, only kubernetes-mixin and node-mixin support this.

```jsonnet
values+:: {
nodeExporter+: {
mixin+: {
_config+: {
showMultiCluster: true,
# clusterLabel: '<cluster label, if different than the default "cluster">',
},
},
},
kubernetesControlPlane+: {
mixin+: {
_config+: {
showMultiCluster: true,
# clusterLabel: '<cluster label, if different than the default "cluster">',
},
},
},
}
```