Skip to content
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

core(traces): disable cpu profiler trace category #12843

Merged
merged 1 commit into from
Aug 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lighthouse-core/gather/gatherers/trace.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,12 @@ class Trace extends FRGatherer {
// Additional categories used by devtools. Not used by Lighthouse, but included to facilitate
// loading traces from Lighthouse into the Performance panel.
'disabled-by-default-devtools.timeline.frame',
'disabled-by-default-v8.cpu_profiler',
'disabled-by-default-v8.cpu_profiler.hires',
'latencyInfo',

// A bug introduced in M92 causes these categories to crash targets on Linux.
// See https://github.com/GoogleChrome/lighthouse/issues/12835 for full investigation.
// 'disabled-by-default-v8.cpu_profiler',
// 'disabled-by-default-v8.cpu_profiler.hires',
];
}

Expand Down