This dashboard provides an interface to view and analyze metrics from your Redis databases.

Metric visualization Metric name Description
Uptime redis_uptime Uptime in seconds
Connected Clients redis_clients Number of connected clients
Blocked clients redis_blocked_clients Number of blocked clients
Unsaved changes redis_rdb_changes_since_last_save Number of operations that produced some kind of changes in the dataset since the last time either SAVE or BGSAVE was called.
Number of keys redis_keyspace_keys Number of keys stored in this database
Evicted Keys redis_evicted_keys Number of evicted keys due to maxmemory limit.
Hit Rate redis_keyspace_hitrate Number of successful lookup of keys in the main dictionary.
Memory Utilization redis_used_memory, redis_maxmemory Total number of bytes allocated by Redis using its allocator divided by the value of the maxmemory configuration directive
Used Memory redis_used_memory Total number of bytes allocated by Redis using its allocator.
CPU Utilization redis_used_cpu_user, redis_used_cpu_sys, redis_used_cpu_sys_children, redis_used_cpu_user_children User CPU consumed by the Redis server, which is the sum of user CPU consumed by all threads of the server process (main thread and background threads); system CPU consumed by the Redis server, which is the sum of system CPU consumed by all threads of the server process (main thread and background threads); system CPU consumed by the background processes; user CPU consumed by the background processes
Hit Rate redis_keyspace_hitrate Number of successful lookup of keys in the main dictionary.
Fragmentation Ratio redis_mem_fragmentation_ratio Ratio between used_memory_rss and used_memory.
Evicted Keys redis_evicted_keys Number of evicted keys due to maxmemory limit
Commands Per Second redis_instantaneous_ops_per_sec Number of commands processed per second.
Connected Clients redis_clients Number of client connections (excluding connections from replicas).
Connected Slaves redis_connected_slaves Number of connected replicas.
Max Output Buffer redis_client_recent_max_output_buffer Recent max buffer output among current client connections.
Network I/O Bytes redis_total_net_input_bytes, redis_total_net_output_bytes The total number of bytes read from and written to the network.