⚡ Redis Monitor
Monitors a Redis server to verify it's accepting connections and responding to commands.
⚙️ Configuracao
| Configuracao | Descricao | Default Port |
|---|---|---|
| Host | Redis server hostname | — |
| Port | Redis port | 6379 |
💡 Dicas
- 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.