Skip to content

Valkey

Auto-Discovery
Health Check
Metrics
Logs

Agent uses a Redis check if the service listens on port 6379.

If some auto-detected parameters are wrong, you can manually override them by adding the following to /etc/glouton/conf.d/99-local.conf:

service:
[...]
# For a Valkey running outside a container
- type: "valkey"
address: "127.0.0.1"
port: 6379
password: "password-if-configured"
# For an additional Valkey running outside a container
- type: "valkey"
instance: "NAME_ASSOCIATED_WITH_YOUR_ADDITIONAL_SERVICE"
address: "127.0.0.1"
port: 6380
password: "password-if-configured"
# For a Valkey running in a Docker container
- type: "valkey"
instance: "CONTAINER_NAME"
address: "172.17.0.2"
port: 6379
password: "password-if-configured"

Agent gathers the same metrics as Redis.