summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKevin Lin <developer@kevinlin.info>2021-10-01 18:59:24 -0700
committerdormando <dormando@rydia.net>2021-11-23 15:58:17 -0800
commitcc0f24bca33d7e8a708b2d6405f39b5044b722ed (patch)
treec15dd39c767cb866bac2ac2f3e0f749b54f7cfd2 /doc
parent75e4d574b34c6e3b5dd9330acd61097b75cdf1d3 (diff)
downloadmemcached-cc0f24bca33d7e8a708b2d6405f39b5044b722ed.tar.gz
Track store errors in thread stats
Add two new stat keys, `store_too_large` and `store_no_memory`, to track occurrences of storage request rejections due to writing too large of a value and writing beyond available provisioned memory, respectively.
Diffstat (limited to 'doc')
-rw-r--r--doc/protocol.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index af97270..0c640e0 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -1267,6 +1267,12 @@ integers separated by a colon (treat this as a floating point number).
| | | with a new expiration time |
| touch_misses | 64u | Number of items that have been touched |
| | | and not found |
+| store_too_large | 64u | Number of rejected storage requests |
+| | | caused by attempting to write a value |
+| | | larger than the -I limit |
+| store_no_memory | 64u | Number of rejected storage requests |
+| | | caused by exhaustion of the -m memory |
+| | | limit (relevant when -M is used) |
| auth_cmds | 64u | Number of authentication commands |
| | | handled, success or failure. |
| auth_errors | 64u | Number of failed authentications. |