0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-26 13:54:48 +00:00
netdata_netdata/collectors/python.d.plugin/redis/README.md
Promise Akpan f5006d51e8 Fix Markdown Lint warnings ()
* make remark access all directories

* detailed fix after autofix by remark lint

* cross check autofix for this set of files

* crosscheck more files

* crosschecking and small fixes

* crosscheck autofixed md files
2019-08-15 13:06:39 +02:00

1,003 B

redis

Get INFO data from redis instance.

Following charts are drawn:

  1. Operations per second

    • operations
  2. Hit rate in percent

    • rate
  3. Memory utilization in kilobytes

    • total
    • lua
  4. Database keys

    • lines are creates dynamically based on how many databases are there
  5. Clients

    • connected
    • blocked
  6. Slaves

    • connected

configuration

socket:
  name     : 'local'
  socket   : '/var/lib/redis/redis.sock'

localhost:
  name     : 'local'
  host     : 'localhost'
  port     : 6379

When no configuration file is found, module tries to connect to TCP/IP socket: localhost:6379.


analytics