We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lighthouse v3 does not provide startTime value for user timing measures. This info is the part of extendedInfo but it was removed.
startTime
extendedInfo
lighthouse https://treo.sh
"user-timings": { "id": "user-timings", "title": "User Timing marks and measures", "description": "Consider instrumenting your app with the User Timing API to create custom, real-world measurements of key user experiences. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/user-timing).", "score": null, "scoreDisplayMode": "informative", "rawValue": false, "displayValue": "2", "details": { "type": "table", "headings": [{ "key": "name", "itemType": "text", "text": "Name" }, { "key": "timingType", "itemType": "text", "text": "Type" }, { "key": "time", "itemType": "ms", "granularity": 0.01, "text": "Time" }], "items": [{ "name": "home did mount", "timingType": "Measure", "time": 49 }, { "name": "boot", "timingType": "Mark", "time": 716.685 }] } }
The report contains only time value.
time
The report should contain startTime value for measures.
Related issues
#5402
The text was updated successfully, but these errors were encountered:
Good point thanks for reporting @alekseykulikov!
Sorry, something went wrong.
Are there any other properties from user timings you need?
lighthouse/lighthouse-core/audits/user-timings.js
Lines 70 to 77 in c9749e1
@patrickhulce No, only this one is missing. There are 4 properties for user timing: name, type , startTime and duration(only for measures).
name
type
duration
Successfully merging a pull request may close this issue.
Bug report
Lighthouse v3 does not provide
startTime
value for user timing measures. This info is the part ofextendedInfo
but it was removed.Provide the steps to reproduce
lighthouse https://treo.sh
What is the current behavior?
The report contains only
time
value.What is the expected behavior?
The report should contain
startTime
value for measures.Environment Information
Related issues
#5402
The text was updated successfully, but these errors were encountered: