-
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
Make desktop perf metric score curves identical everywhere #9436
Comments
Thanks for filing @RustedBones! The score scale for desktop in Page Speed Insights is adjusted for the faster connection type, but the score scale is not automatically adjusted in other Lighthouse environments. We would like to fix this discrepancy in other environments but doing so while supporting all the other available flags in an intuitive way is challenging. It looks like you were running in DevTools though which should be the most straightforward. @connorjclark do you think this is something we could tackle with an upcoming roll? (Using the desktop config when the "Desktop" radio is selected instead of just setting |
If my understanding is right, you are meaning that PageSpeed Insights is using the // 75th and 95th percentiles -> median and PODR
// SELECT QUANTILES(SpeedIndex, 21) FROM [httparchive:summary_pages.2018_12_15_desktop] LIMIT 1000
{path: 'metrics/speed-index', options: {scorePODR: 1100, scoreMedian: 2300}}, that changes the underlying score from Is this correct ? |
Yes exactly correct @RustedBones ! |
Updated title. Our planned action is to use the |
When running tests on Lighthouse and PageSpeed Insight, we spotted some inconsistencies in the
speed index
classification of what is a 'fast', i.e. green/orange/red:speed index
of 3.2s is greenspeed index
of 1.6s is orangeBoth results are observed in Desktop mode.
Since
speed index
is a Lab Data field, I expected the 2 tools to give the same classification.The text was updated successfully, but these errors were encountered: