-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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 TTI scoring label to 5000ms (matches guidance) #947
Conversation
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.
one small thing and waiting for travis. Small change but I want to do a release tomorrow :)
@@ -17,6 +17,8 @@ const Formatter = require('../formatters/formatter'); | |||
// https://www.desmos.com/calculator/jlrx14q4w8 | |||
const SCORING_POINT_OF_DIMINISHING_RETURNS = 1700; | |||
const SCORING_MEDIAN = 5000; | |||
// This aligns with the external TTI targets in https://goo.gl/yXqxpL |
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.
Do we have a tracking issue for updating the scoring? Would be good to add here
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've thrown together #948 but am happy to detail more on there if needed. Is that what you had in mind?
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.
looks good
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.
📈LGTM📉
@@ -17,6 +17,8 @@ const Formatter = require('../formatters/formatter'); | |||
// https://www.desmos.com/calculator/jlrx14q4w8 | |||
const SCORING_POINT_OF_DIMINISHING_RETURNS = 1700; | |||
const SCORING_MEDIAN = 5000; | |||
// This aligns with the external TTI targets in https://goo.gl/yXqxpL |
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.
looks good
* Update TTI scoring label to 5000 (matches guidance) * Add ms units to the TTI included in reports
The current TTI uses our point of diminishing returns as a label, however this number (1700) currently doesn't align with the external guidance on TTI targets (5s on 3G). This PR updates the TTI target to 5000 as discussed with sir @brendankenny.
A separate commit also adds the missing
ms
units to the report that are used in other performance metrics but not included in TTI for some reason. Two fixes for the price of one 🐦 🐦