Try using Template DB Redis https://git.zabbix.com/projects/ZBX/...lates/db/redis
Zabbix version - 5.0.1
redis 6.0.4
The proplem is with template macros:
My Redis instance require password for auth clients, and so key data elements failed to get value - "NO AUTH (Authentication required)" error.
I tried change macros to value like
or
but with no success.
Zabbix version - 5.0.1
redis 6.0.4
The proplem is with template macros:
| {$REDIS.CONN.URI} | Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it's set), otherwise, the plugin's default value is used: "tcp://localhost:6379" | tcp://localhost:6379 |
I tried change macros to value like
Code:
tcp://:<password>@localhost:6379
Code:
tcp://:<password>@localhost:6379/0
Comment