@@ -20,31 +20,46 @@ The fields from this plugin are gathered in the *memcached* measurement.
2020
2121Fields:
2222
23- * get_hits - Number of keys that have been requested and found present
24- * get_misses - Number of items that have been requested and not found
25- * evictions - Number of valid items removed from cache to free memory for new items
26- * limit_maxbytes - Number of bytes this server is allowed to use for storage
23+ * accepting_conns - Whether or not server is accepting conns
24+ * auth_cmds - Number of authentication commands handled, success or failure
25+ * auth_errors - Number of failed authentications
2726* bytes - Current number of bytes used to store items
28- * uptime - Number of secs since the server started
29- * curr_items - Current number of items stored
30- * total_items - Total number of items stored since the server started
31- * curr_connections - Number of open connections
32- * total_connections - Total number of connections opened since the server started running
33- * connection_structures - Number of connection structures allocated by the server
27+ * bytes_read - Total number of bytes read by this server from network
28+ * bytes_written - Total number of bytes sent by this server to network
29+ * cas_badval - Number of CAS reqs for which a key was found, but the CAS value did not match
30+ * cas_hits - Number of successful CAS reqs
31+ * cas_misses - Number of CAS reqs against missing keys
32+ * cmd_flush - Cumulative number of flush reqs
3433* cmd_get - Cumulative number of retrieval reqs
3534* cmd_set - Cumulative number of storage reqs
35+ * cmd_touch - Cumulative number of touch reqs
36+ * conn_yields - Number of times any connection yielded to another due to hitting the -R limit
37+ * connection_structures - Number of connection structures allocated by the server
38+ * curr_connections - Number of open connections
39+ * curr_items - Current number of items stored
40+ * decr_hits - Number of successful decr reqs
41+ * decr_misses - Number of decr reqs against missing keys
3642* delete_hits - Number of deletion reqs resulting in an item being removed
3743* delete_misses - umber of deletions reqs for missing keys
44+ * evicted_unfetched - Items evicted from LRU that were never touched by get/incr/append/etc
45+ * evictions - Number of valid items removed from cache to free memory for new items
46+ * expired_unfetched - Items pulled from LRU that were never touched by get/incr/append/etc before expiring
47+ * get_hits - Number of keys that have been requested and found present
48+ * get_misses - Number of items that have been requested and not found
49+ * hash_bytes - Bytes currently used by hash tables
50+ * hash_is_expanding - Indicates if the hash table is being grown to a new size
51+ * hash_power_level - Current size multiplier for hash table
3852* incr_hits - Number of successful incr reqs
3953* incr_misses - Number of incr reqs against missing keys
40- * decr_hits - Number of successful decr reqs
41- * decr_misses - Number of decr reqs against missing keys
42- * cas_hits - Number of successful CAS reqs
43- * cas_misses - Number of CAS reqs against missing keys
44- * bytes_read - Total number of bytes read by this server from network
45- * bytes_written - Total number of bytes sent by this server to network
54+ * limit_maxbytes - Number of bytes this server is allowed to use for storage
55+ * listen_disabled_num - Number of times server has stopped accepting new connections (maxconns)
56+ * reclaimed - Number of times an entry was stored using memory from an expired entry
4657* threads - Number of worker threads requested
47- * conn_yields - Number of times any connection yielded to another due to hitting the -R limit
58+ * total_connections - Total number of connections opened since the server started running
59+ * total_items - Total number of items stored since the server started
60+ * touch_hits - Number of keys that have been touched with a new expiration time
61+ * touch_misses - Number of items that have been touched and not found
62+ * uptime - Number of secs since the server started
4863
4964Description of gathered fields taken from [ here] ( https://github.com/memcached/memcached/blob/master/doc/protocol.txt ) .
5065
0 commit comments