Jason M
Jason M

Reputation: 1053

Chrome Developer tools missing timeline views

So under timeline I would normal see options such as Events, Frames, Memory in the upper left but I no longer do. I'm not sure what I did but what I have there now is two checkboxes: capture stacks and capture memory. How can I get back the original setup?

Upvotes: 12

Views: 7949

Answers (3)

Adel
Adel

Reputation: 6268

It moved into Performance Analysis Reference: https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference

Upvotes: 2

Rejoy
Rejoy

Reputation: 327

It is in-fact disappointing to see such a feature missing from chrome dev tool. FPS meter can be used to get similar information, but not as good as seeing info realtime in Timeline. FPS meter

In addition to this, for memory details the following script from paulirish is useful,

https://github.com/paulirish/memory-stats.js

enter image description here

Upvotes: 2

Bastian Hofmann
Bastian Hofmann

Reputation: 2495

They updated the interface, I'm pretty sure all the functionality is still available.

(In timeline view) * Event mode is the default. * Frames mode can be toggled with the icon next to the trash can. * Memory can by turned on by checking the capture memory checkbox.

Upvotes: 4

Related Questions