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
| `extraArgs` | extra arguments for the binary; possible values [here](https://github.com/oliver006/redis_exporter#flags)| {}
@@ -54,7 +54,7 @@ The following table lists the configurable parameters and their default values.
54
54
|`service.port`| service external port |`9121`|
55
55
|`service.annotations`| Custom annotations for service |`{}`|
56
56
|`service.labels`| Additional custom labels for the service |`{}`|
57
-
|`redisAddress`|A list of addresses of one or more redis nodes|`redis://myredis:6379`|
57
+
|`redisAddress`|Address of the Redis instance to scrape|`redis://myredis:6379`|
58
58
|`annotations`| pod annotations for easier discovery | {} |
59
59
|`rbac.create`| Specifies whether RBAC resources should be created.|`true`|
60
60
|`rbac.pspEnabled`| Specifies whether a PodSecurityPolicy should be created.|`true`|
@@ -116,3 +116,9 @@ data:
116
116
return result
117
117
```
118
118
If you want to use this script for collecting metrics, you could do this by just set `script.configmap` to the name of the configmap (e.g. `prometheus-redis-exporter-script`) and `script.keyname` to the configmap-key holding the script (eg. `script`). The required variables inside the container will be set automatically.
119
+
120
+
## Upgrading
121
+
122
+
### To 3.0.0
123
+
124
+
The default tag for the exporter image is now `v1.x.x`. This major release includes changes to the names of various metrics and no longer directly supports the configuration (and scraping) of multiple redis instances; that is now the Prometheus server's responsibility. You'll want to use [this dashboard](https://github.com/oliver006/redis_exporter/blob/master/contrib/grafana_prometheus_redis_dashboard.json) now. Please see the [redis_exporter github page](https://github.com/oliver006/redis_exporter#upgrading-from-0x-to-1x) for more details.
0 commit comments