You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: redis/RELEASES.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
# Release Notes - Version 3.4.1
2
+
3
+
## What's New
4
+
5
+
-**Grafana Dashboard**: Added optional `GrafanaDashboard` CRD provisioned via the [Grafana Operator](https://grafana.github.io/grafana-operator/). Enable with `grafana.dashboard.enabled: true` (disabled by default). When enabled, a pre-built Redis dashboard is automatically created in your Grafana instance with CPU and memory panels always included, and Connected Clients, Redis Memory Used, Commands/sec, and Cache Hit Rate panels added when `redis.exporter.enabled: true`. Compatible with both Helm and ArgoCD deployments. Configure the target folder, datasource name, and Grafana CR selector via `grafana.folder`, `grafana.datasource`, and `grafana.instanceSelector`.
Copy file name to clipboardExpand all lines: redis/versions/3.4.1/README.md
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,55 @@ redis:
74
74
- "redis_latency_percentiles_usec"
75
75
```
76
76
77
+
**Grafana Dashboard** — opt-in, k8s clusters only. When enabled, a `GrafanaDashboard` CRD is provisioned via the [Grafana Operator](https://grafana.github.io/grafana-operator/) and automatically appears in your Grafana instance:
78
+
79
+
```yaml
80
+
grafana:
81
+
dashboard:
82
+
enabled: true
83
+
folder: Redis # Grafana folder the dashboard is placed in
84
+
datasource: metrics # name of the Prometheus datasource in your Grafana instance
85
+
instanceSelector:
86
+
matchLabels:
87
+
dashboards: grafana # must match the label on your Grafana CR
88
+
```
89
+
90
+
On Control Plane's managed platform where no Grafana Operator is present, leave this disabled — the `GrafanaDashboard` CRD will have nothing to reconcile it.
91
+
92
+
**Prerequisites:**
93
+
94
+
1. **Grafana Operator installed** in your Kubernetes cluster. The operator must be configured with your Grafana instance URL and a Grafana service account API token (not a Control Plane token):
0 commit comments