w3resource

Redis Server: MONITOR

MONITOR

Redis MONITOR command is a debugging command that streams back every command processed by the Redis server. The ability to see all the requests processed by the server is useful in order to spot bugs in an application both when using Redis as a database and as a distributed caching system.

Syntax:

MONITOR

Available since

1.0.0.

Return Value

Non-standard return value just dumps the received commands in an infinite flow.

Example: Redis MONITOR

redis 127.0.0.1:6379> MONITOR 
OK
1410855382.370791 [0 127.0.0.1:60581] "info"
1410855404.062722 [0 127.0.0.1:60581] "get" "a"

Previous: LASTSAVE
Next: ROLE



Follow us on Facebook and Twitter for latest update.