summaryrefslogtreecommitdiffstats
path: root/conf.d/python.d/redis.conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf.d/python.d/redis.conf')
-rw-r--r--conf.d/python.d/redis.conf10
1 files changed, 9 insertions, 1 deletions
diff --git a/conf.d/python.d/redis.conf b/conf.d/python.d/redis.conf
index 9935bff77..983fbfbdb 100644
--- a/conf.d/python.d/redis.conf
+++ b/conf.d/python.d/redis.conf
@@ -56,12 +56,14 @@
#
# Additionally to the above, redis also supports the following:
#
-# socket: 'path/to/mysql.sock'
+# socket: 'path/to/redis.sock'
#
# or
# host: 'IP or HOSTNAME' # the host to connect to
# port: PORT # the port to connect to
#
+# and
+# pass: 'password' # the redis password to use for AUTH command
#
# ----------------------------------------------------------------------
@@ -71,27 +73,33 @@
socket1:
name : 'local'
socket : '/tmp/redis.sock'
+ # pass : ''
socket2:
name : 'local'
socket : '/var/run/redis/redis.sock'
+ # pass : ''
socket3:
name : 'local'
socket : '/var/lib/redis/redis.sock'
+ # pass : ''
localhost:
name : 'local'
host : 'localhost'
port : 6379
+ # pass : ''
localipv4:
name : 'local'
host : '127.0.0.1'
port : 6379
+ # pass : ''
localipv6:
name : 'local'
host : '::1'
port : 6379
+ # pass : ''