Memcached fieldsedit

Memcached module

memcached fieldsedit

stats fieldsedit

stats

memcached.stats.pidedit

type: long

Current process ID of the Memcached task.

memcached.stats.uptime.secedit

type: long

Memcached server uptime.

memcached.stats.threadsedit

type: long

Number of threads used by the current Memcached server process.

memcached.stats.connections.currentedit

type: long

Number of open connections to this Memcached server, should be the same value on all servers during normal operation.

memcached.stats.connections.totaledit

type: long

Numer of successful connect attempts to this server since it has been started.

memcached.stats.get.hitsedit

type: long

Number of successful "get" commands (cache hits) since startup, divide them by the "cmd_get" value to get the cache hitrate.

memcached.stats.get.missesedit

type: long

Number of failed "get" requests because nothing was cached for this key or the cached value was too old.

memcached.stats.cmd.getedit

type: long

Number of "get" commands received since server startup not counting if they were successful or not.

memcached.stats.cmd.setedit

type: long

Number of "set" commands serviced since startup.

memcached.stats.read.bytesedit

type: long

Total number of bytes received from the network by this server.

memcached.stats.written.bytesedit

type: long

Total number of bytes send to the network by this server.

memcached.stats.items.currentedit

type: long

Number of items currently in this server’s cache.

memcached.stats.items.totaledit

type: long

Number of items stored ever stored on this server. This is no "maximum item count" value but a counted increased by every new item stored in the cache.

memcached.stats.evictionsedit

type: long

Number of objects removed from the cache to free up memory for new items because Memcached reached it’s maximum memory setting (limit_maxbytes).