summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDustin Sallings <dustin@spy.net>2009-03-08 21:54:55 -0700
committerDustin Sallings <dustin@spy.net>2009-03-08 21:54:55 -0700
commiteb0afbd1a797dc616f2858a83dec3d2e2d77d9cd (patch)
tree538649c78d3a1b18570b9d516870f1a26eda7517
parent17512cf25dec3d22f968fb9b895f3841f746dbe2 (diff)
downloadmemcached-eb0afbd1a797dc616f2858a83dec3d2e2d77d9cd.tar.gz
Reformat overall stats document.
I'm doing this in org-tbl mode to make it easier to align stuff. If the boxes bother people, they can be removed.
-rw-r--r--doc/protocol.txt80
1 files changed, 40 insertions, 40 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index 9d67747..c8f1f5e 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -355,46 +355,46 @@ In the type column below, "32u" means a 32-bit unsigned integer, "64u"
means a 64-bit unsigner integer. '32u:32u' means two 32-but unsigned
integers separated by a colon.
-
-Name Type Meaning
-----------------------------------
-pid 32u Process id of this server process
-uptime 32u Number of seconds this server has been running
-time 32u current UNIX time according to the server
-version string Version string of this server
-pointer_size 32 Default size of pointers on the host OS
- (generally 32 or 64)
-rusage_user 32u:32u Accumulated user time for this process
- (seconds:microseconds)
-rusage_system 32u:32u Accumulated system time for this process
- (seconds:microseconds)
-curr_items 32u Current number of items stored by the server
-total_items 32u Total number of items stored by this server
- ever since it started
-bytes 64u Current number of bytes used by this server
- to store items
-curr_connections 32u Number of open connections
-total_connections 32u Total number of connections opened since
- the server started running
-connection_structures 32u Number of connection structures allocated
- by the server
-cmd_get 64u Cumulative number of retrieval requests
-cmd_set 64u Cumulative number of storage requests
-get_hits 64u Number of keys that have been requested and
- found present
-get_misses 64u Number of items that have been requested
- and not found
-evictions 64u Number of valid items removed from cache
- to free memory for new items
-bytes_read 64u Total number of bytes read by this server
- from network
-bytes_written 64u Total number of bytes sent by this server to
- network
-limit_maxbytes 32u Number of bytes this server is allowed to
- use for storage.
-threads 32u Number of worker threads requested.
- (see doc/threads.txt)
-
+|-----------------------+---------+------------------------------------------------|
+| Name | Type | Meaning |
+|-----------------------+---------+------------------------------------------------|
+| pid | 32u | Process id of this server process |
+| uptime | 32u | Number of seconds this server has been running |
+| time | 32u | current UNIX time according to the server |
+| version | string | Version string of this server |
+| pointer_size | 32 | Default size of pointers on the host OS |
+| | | (generally 32 or 64) |
+| rusage_user | 32u:32u | Accumulated user time for this process |
+| | | (seconds:microseconds) |
+| rusage_system | 32u:32u | Accumulated system time for this process |
+| | | (seconds:microseconds) |
+| curr_items | 32u | Current number of items stored by the server |
+| total_items | 32u | Total number of items stored by this server |
+| | | ever since it started |
+| bytes | 64u | Current number of bytes used by this server |
+| | | to store items |
+| curr_connections | 32u | Number of open connections |
+| total_connections | 32u | Total number of connections opened since |
+| | | the server started running |
+| connection_structures | 32u | Number of connection structures allocated |
+| | | by the server |
+| cmd_get | 64u | Cumulative number of retrieval requests |
+| cmd_set | 64u | Cumulative number of storage requests |
+| get_hits | 64u | Number of keys that have been requested and |
+| | | found present |
+| get_misses | 64u | Number of items that have been requested |
+| | | and not found |
+| evictions | 64u | Number of valid items removed from cache |
+| | | to free memory for new items |
+| bytes_read | 64u | Total number of bytes read by this server |
+| | | from network |
+| bytes_written | 64u | Total number of bytes sent by this server to |
+| | | network |
+| limit_maxbytes | 32u | Number of bytes this server is allowed to |
+| | | use for storage. |
+| threads | 32u | Number of worker threads requested. |
+| | | (see doc/threads.txt) |
+|-----------------------+---------+------------------------------------------------|
Item statistics
---------------