Incomplete timeline information using Tracing domain
See original GitHub issueComponent | Version |
---|---|
Operating system | Ubuntu 18.04 |
Node.js | 8.11.2 |
Chrome/Chromium/… | 68 |
chrome-remote-interface | 0.26 |
Is Chrome running in a container? NO
Snippet of code to obtain timeline information
rawEvents = []
Tracing.dataCollected(function(data){
var events = data.value;
rawEvents = rawEvents.concat(events);
});
Page.loadEventFired(function(){Tracing.end()});
Tracing.start(); Page.navigate({'url': 'http://github.com'});
When I dump the contents of rawEvents in a file and load inside chrome’s performance tab using the graphical interface, it gives an empty timeline.
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Incomplete Survey Responses - Qualtrics
After a respondent starts a survey, they have a certain amount of time allotted for them to complete the survey, regardless of the...
Read more >Advanced AD DS Management Using Active Directory ...
This topic covers the updated Active Directory Administrative Center with its new Active Directory Recycle Bin, Fine-grained Password policy ...
Read more >Commonsense reasoning about containers using radically ...
Abstract. In physical reasoning, humans are often able to carry out useful reasoning based on radically incomplete information. One physical domain that is ......
Read more >Navigate a Systrace report - Android Developers
Center the trace timeline on the current mouse location. M, Frame the current selection. 1, Change the currently-active selection model to the " ......
Read more >Traceability in the wild - ACM Digital Library
Traceability in the wild: automatically augmenting incomplete trace links.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I didn’t thoroughly check the output, I just noticed that something has been loaded.
Anyway, if you inspect DevTools during the tracing you can see that it’s using something like this:
Maybe you could try playing with the
categories
param (not sure if it defaults to “everything”). I’m shooting in the dark here…Perfect, that seems to work. Thanks a lot!
I don’t know why the dev protocol says the ‘categories’ option is deprecated since not using that doesn’t work with the latest version of Chrome. I would leave it up to you guys if the dev protocol should be updated, or the example provided as a part of this repo.
I’ll be closing this issue.