Document memcached_ps_cputime_syst and memcached_ps_cputime_user

Change-Id: Ib8106563a343337fd736ac30095155a7893e9bd0
Closes-Bug: #1576265
This commit is contained in:
Guillaume Thouvenin 2016-09-26 15:55:08 +02:00
parent f34fd8ae47
commit 6437772070
1 changed files with 6 additions and 1 deletions

View File

@ -22,5 +22,10 @@
* ``memcached_ops_misses``, the number of items that have been requested and
not found.
* ``memcached_percent_hitratio``, the percentage of get command hits (in cache).
* ``memcached_ps_cputime_syst``, the percentage of CPU time spent in system
mode by memcached. It can be greater than 100% when the node has more than
one CPU.
* ``memcached_ps_cputime_user``, the percentage of CPU time spent in user mode
by memcached. It can be greater than 100% when the node has more than one CPU.
For details, see the `Memcached documentation <https://github.com/memcached/memcached/blob/master/doc/protocol.txt#L488>`_.
For details, see the `Memcached documentation <https://github.com/memcached/memcached/blob/master/doc/protocol.txt#L488>`_.