Home > Software engineering >  Chrome developer tools: Failed to parse CPU profile
Chrome developer tools: Failed to parse CPU profile

Time:06-04

I tried to debug the performance of my typescript application, but in the chrome developer tools there are no "real" function names (just generals like Animation time fired, compile code, optimize code, task), but I can't even see one of my own function names. When I run the performance test I can see an error in the console: "Failed to parse CPU profile." I can't even get any search results in google. What is this? If I open a random site that's working, only my app can't show function names in the performance view. I am using the latest version of Google Chrome in Windows 10.

I am using webpack for compiling my typescript, I tried both debug and release builds but it is the same problem. I am not using source maps, but that shouldn't be a requirement for performance view.

Any suggestion?

CodePudding user response:

Sounds like this known issue: crbug.com/1330726

A fix has been landed yesterday and will (likely) make it to Chrome 102 and 103 soon. Today's Canary (104.0.5100.0) should already have it.

  • Related