Skip to content

Commit 849eb90

Browse files
Add cluster view dashboard (#397)
Adds a dashboard designed to see multiple perspectives within a cluster.
1 parent 6c71eec commit 849eb90

File tree

2 files changed

+3752
-0
lines changed

2 files changed

+3752
-0
lines changed

grafana/dashboards/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Grafana Dashboard Configuration
2+
3+
## Updating Datasource UID
4+
5+
The dashboard JSON files in this directory reference datasources using a unique identifier (UID). If you need to update the datasource UID to match your Grafana instance, follow the instructions below.
6+
7+
### Method 1: Grafana UI (Easiest)
8+
9+
1. Navigate to **Grafana****Connections****Data sources**
10+
2. Click on the datasource you want to use (e.g., **Prometheus**)
11+
3. Look at the **URL in your browser's address bar**
12+
4. The UID will be visible in the URL (typically after `/datasources/edit/`)
13+
- Example: `http://localhost:3000/datasources/edit/prometheus` → UID is `prometheus`
14+
15+
### Updating the Dashboard Files
16+
17+
Once you have the UID, you can update it in the dashboard JSON files:
18+
19+
Find sections like this:
20+
21+
```json
22+
"datasource": {
23+
"type": "prometheus",
24+
"uid": "prometheus"
25+
}
26+
```
27+
28+
Replace the `"uid"` value with the UID you found in step 3 above.
29+
30+
### Note
31+
32+
- The default UID for Prometheus in these dashboards is `prometheus`
33+
- If your Grafana instance uses a different UID, you'll need to update all dashboard files accordingly
34+
- You can use a find-and-replace tool to update multiple files at once
35+

0 commit comments

Comments
 (0)