From cc0f24bca33d7e8a708b2d6405f39b5044b722ed Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Fri, 1 Oct 2021 18:59:24 -0700 Subject: 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. --- doc/protocol.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc') 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. | -- cgit v1.2.1