-
Notifications
You must be signed in to change notification settings - Fork 324
DEV: update various metrics #2942
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
base: DOC-6334
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,10 +124,14 @@ Here is the meaning of the fields: | |
| * `rbs`: current size of the client's read buffer in bytes. Added in Redis 7.0. | ||
| * `lib-name` - the name of the client library that is being used. | ||
| * `lib-ver` - the version of the client library. | ||
| * `io-thread`: id of I/O thread assigned to the client. Added in Redis 8.0 | ||
| * `io-thread`: id of I/O thread assigned to the client. Added in Redis 8.0. | ||
| * `tot-net-in`: total network input bytes read from this client. | ||
| * `tot-net-out`: total network output bytes sent to this client. | ||
| * `tot-cmds`: total count of commands this client executed. | ||
| * `read-events`: number of `readQueryFromClient()` calls for this client. Added in Redis 8.8 | ||
| * `avg-pipeline-len-sum`: cumulative sum of commands parsed per batch. Added in Redis 8.8 | ||
| * `avg-pipeline-len-cnt`: number of parse batches. Added in Redis 8.8 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code says Count of pipeline length samples Please check with R&D, I'm not sure what is correct.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I took this definition from your 8.8-M01 release notes. |
||
|
|
||
|
|
||
| The client flags can be a combination of: | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code says sum of pipeline lengths (for computing average)
https://github.com/redis/redis/blob/2ba0194fbe5820cab8602bfa633a7d27e97cabdd/src/server.h#L1622
Are you sure this is the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I took this definition from your 8.8-M01 release notes.