-
Notifications
You must be signed in to change notification settings - Fork 312
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
feat(shell): add qps and p99 statistics while list_node #420
Conversation
This PR is great, but we should still consider some approach for node-level qps on falcon view, not simply on shell. |
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.
既然把qps信息加在了node下,那之前的server_stat的相关信息是不是可以删掉了,同时也规范一下server_stat的print格式?
这个pr先添加 |
What problem does this PR solve?
We used to get server basic qps and latency information by command
server_stat
. However,server_stat
is hard to read, and some memory-related statistics have already be shown by commandnodes -u
. As a result, I add commandnodes -q
to show qps and latency information provided byserver_stat
.What is changed and how it works?
Add command
nodes -q
to show server read, write qps and read, write latency.The command sample is below:
Check List
Tests