redis-field-engineering / redis-enterprise-observability

Observe Redis Enterprise and Redis Cloud deployments using Grafana, Datadog, Dynatrace, New Relic, and Splunk.
MIT License
7 stars 0 forks source link

Grafana shard dashboard shows incorrect shard connection count #9

Open brentp-redislabs opened 4 weeks ago

brentp-redislabs commented 4 weeks ago

In /grafana/dashboards/grafana_v9-11/software/basic/redis-software-shard-dashboard_v9-11.json the shard connection count is using the prometheus metric "redis_total_connections_received" which is a cumulative metric and not useful for monitoring the shard connection pool. This can be changed to "redis_connected_clients" to get a more accurate figure.

sample query change below:

"expr": "redis_connected_clients{bdb=\"$bdb\", cluster=\"$cluster\", redis=\"$shard\"}"

j8-redis commented 1 week ago

Thanks, this has been fixed and should be merged shortly