From 2d37bdabfaf7e579c3d5354bc8212cbe8acef15e Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Tue, 12 Sep 2023 08:29:58 -0600 Subject: [PATCH] fix(inputs.redis): Fix password typo (#13910) --- plugins/inputs/redis/redis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inputs/redis/redis.go b/plugins/inputs/redis/redis.go index 002269fb7..2f7f9f5b4 100644 --- a/plugins/inputs/redis/redis.go +++ b/plugins/inputs/redis/redis.go @@ -35,7 +35,7 @@ type Redis struct { Commands []*RedisCommand `toml:"commands"` Servers []string `toml:"servers"` Username string `toml:"username"` - Password string `toml:"passowrd"` + Password string `toml:"password"` tls.ClientConfig