0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-17 11:12:42 +00:00
netdata_netdata/collectors/python.d.plugin/memcached
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
..
Makefile.inc Fix make dist () 2018-10-16 15:26:28 +03:00
memcached.chart.py [python] make units compliant with IEC standard () 2018-12-17 18:50:20 +03:00
memcached.conf python.d.plugin update () 2018-12-07 10:15:03 +01:00
README.md Fix Markdown Lint warnings () 2019-08-15 13:06:39 +02:00

memcached

Memcached monitoring module. Data grabbed from stats interface.

  1. Network in kilobytes/s

    • read
    • written
  2. Connections per second

    • current
    • rejected
    • total
  3. Items in cluster

    • current
    • total
  4. Evicted and Reclaimed items

    • evicted
    • reclaimed
  5. GET requests/s

    • hits
    • misses
  6. GET rate rate in requests/s

    • rate
  7. SET rate rate in requests/s

    • rate
  8. DELETE requests/s

    • hits
    • misses
  9. CAS requests/s

    • hits
    • misses
    • bad value
  10. Increment requests/s

    • hits
    • misses
  11. Decrement requests/s

    • hits
    • misses
  12. Touch requests/s

    • hits
    • misses
  13. Touch rate rate in requests/s

    • rate

configuration

Sample:

localtcpip:
  name     : 'local'
  host     : '127.0.0.1'
  port     : 24242

If no configuration is given, module will attempt to connect to memcached instance on 127.0.0.1:11211 address.


analytics