I'm running a master and a slave instance of redis on a local and remote server.
When I try to start metricbeat I'm getting this error:
ERROR redis/redis.go:72 Error retrieving slowlog len: ERR unknown command SLOWLOG
, with args beginning with: len
,
My Redis yml module file:
# Module: redis
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/6.x/metricbeat-module-redis.html
- module: redis
metricsets:
- info
- keyspace
period: 10s
# Redis hosts
hosts: ["remote_server:16302"]
# Network type to be used for redis connection. Default: tcp
#network: tcp
# Max number of concurrent connections. Default: 10
#maxconn: 10
# Redis AUTH password. Empty by default.
#password: foobared
Does anyone know what it might be?