-
Notifications
You must be signed in to change notification settings - Fork 12.2k
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
Added requests/sec(throughput) #11694
Conversation
public/app/core/utils/kbn.ts
Outdated
@@ -948,6 +949,7 @@ kbn.getUnitFormats = function() { | |||
text: 'throughput', | |||
submenu: [ | |||
{ text: 'ops/sec (ops)', value: 'ops' }, | |||
{ text: 'requets/sec (rps)', value: 'rps' }, |
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.
This conflicts with reads/sec
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 have now changed from rps to reqps
Thank you for contributing! |
@@ -948,6 +949,7 @@ kbn.getUnitFormats = function() { | |||
text: 'throughput', | |||
submenu: [ | |||
{ text: 'ops/sec (ops)', value: 'ops' }, | |||
{ text: 'requets/sec (rps)', value: 'reqps' }, |
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.
@bergquist This should be request
instead of requets
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.
@mjtrangoni Thanks for seeing this.
Can I changed this PR or do I have to create a new PR?
It should have been requests/sec
#9630