โก Redis Monitor
Monitors a Redis server to verify it's accepting connections and responding to commands.
โ๏ธ Configurationโ
| Setting | Description | Default Port |
|---|---|---|
| Host | Redis server hostname | โ |
| Port | Redis port | 6379 |
๐ก Tipsโ
- If your Redis requires a password (
requirepass), the basic TCP check will still work โ it verifies the port is open. - For a deeper check, use a TCP monitor with Send Data:
PING\r\nand Expect Data:+PONGโ this verifies Redis is actually responding to commands. - Redis Sentinel typically runs on port 26379 โ monitor it separately if you use it.