GoogleChrome / lighthouse-ci

Automate running Lighthouse for every commit, viewing the changes, and preventing regressions
Apache License 2.0
6.41k stars 643 forks source link

Track user marks and measures on the lhci server dashboard #1011

Open rajsite opened 7 months ago

rajsite commented 7 months ago

Is your feature request related to a problem? Please describe.

I'm capturing User Timing marks and measures in my lighthouse reports and I can see the difference if I compare two runs directly like follows:

image

But I can't find a way to visualize them on the dashboard:

image

For these runs the performance score is zero because for these runs I am only interested in the user mark values:

module.exports = {
    ci: {
        collect: {
            settings: {
                onlyAudits: ['user-timings']
            }
        },
    },
};

Describe the solution you'd like

I would like to see the trend in values for my User marks and measures over time on the lhci server dashboard.

Describe alternatives you've considered

n/a

Additional context

n/a