Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update info docs with two buffer limit metrics. #2520

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions commands/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,10 @@ Here is the meaning of all fields in the **stats** section:
* `total_writes_processed`: Total number of write events processed
* `io_threaded_reads_processed`: Number of read events processed by the main and I/O threads
* `io_threaded_writes_processed`: Number of write events processed by the main and I/O threads
* `stat_reply_buffer_shrinks`: Total number of output buffer shrinks
* `stat_reply_buffer_expands`: Total number of output buffer expands
* `client_query_buffer_limit_disconnections`: Total number of disconnections due to client reaching query buffer limit
* `client_output_buffer_limit_disconnections`: Total number of disconnections due to client reaching output buffer limit
* `reply_buffer_shrinks`: Total number of output buffer shrinks
* `reply_buffer_expands`: Total number of output buffer expands
* `eventloop_cycles`: Total number of eventloop cycles
* `eventloop_duration_sum`: Total time spent in the eventloop in microseconds (including I/O and command processing)
* `eventloop_duration_cmd_sum`: Total time spent on executing commands in microseconds
Expand Down
Loading