Memcached statistics stats command

Memcached stats command is used to return statistical information such as PID (process number), version number, number of connections, etc. www.dgvast.cn.

pid: memcache server process ID
uptime: server has been running in seconds
time: server current Unix timestamp
version: memcache version
pointer_size: operating system pointer size
rusage_user: process cumulative user time
rusage_system: process cumulative system time
curr_connections: current number of connections
total_connections: Memcached Total number of
connections since running connection_structures: number of connection structures allocated by Memcached
cmd_get: number of get command requests
cmd_set: number of set command requests
cmd_flush: number of flush command requests
get_hits: number of get command hits
get_misses: number of get command misses delete_misses: number of
delete command misses
delete_hits: number of delete command hits
incr_misses: number of
incr command misses
incr_hits: number of incr command hits decr_misses: number of
decr command misses
decr_hits: number of decr command hits cas_misses: number of
cas command misses
cas_hits: number of cas command hits cas_badval: number of wipes used
auth_cmds: the number of authentication commands processed
auth_errors: the number of authentication failures
bytes_read: the total number of bytes read bytes_written: the total number of bytes
sent
limit_maxbytes: the total size of allocated memory (bytes)
accepting_conns: whether the server has reached the maximum connection (0/1 )
Listen_disabled_num: the number of failed listeners
threads: the current number of threads
conn_yields: the number of active abandonment of the connection operation
bytes: the number of bytes occupied by the
current storage
curr_items: the total number of currently stored data total_items: the total number of stored data since the start
evictions: the number of objects released by the LRU
reclaimed: the number of expired data entries to store new data

Guess you like

Origin blog.51cto.com/13959155/2542785