Last active
July 18, 2020 22:44
-
-
Save aroraayush/acce523e6e147dfcd5498dbcee38656e to your computer and use it in GitHub Desktop.
Redis Monitoring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis-cli -h 10.0.1.252 -p 6379 info | |
redis-benchmark -h 10.0.1.252 -p 6379 -q -n 100000 | |
redis-cli monitor | |
redis-cli info Complete info about the redis-instance | |
redis-cli info server Server Information, cersions, configs, binary | |
redis-cli info clients Connected clients | |
redis-cli info memory Statistics about memory usage and limits | |
redis-cli info persistence Info about RDB and AOF | |
redis-cli info stats Connection, network, keyspace statistics | |
redis-cli info replication Replication settings and status | |
redis-cli info cpu CPU utilization | |
redis-cli info cluster Cluster settings and status | |
redis-cli info keyspace Display dbs and number of keys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment