Allow tracing across navigations
Categories
(DevTools :: Debugger, enhancement)
Tracking
(firefox124 fixed)
Tracking | Status | |
---|---|---|
firefox124 | --- | fixed |
People
(Reporter: ochameau, Assigned: ochameau)
References
(Blocks 1 open bug)
Details
Attachments
(4 files)
For now, the javascript tracer automatically shuts down on navigation.
It would be nice for it to persist across navigations so that we can debug code fired during load.
An alternative which could be helpful would be to allow starting the tracer on load.
This would allow to distinguish code running until unload versus code running from load.
Assignee | ||
Comment 1•11 months ago
|
||
Because the JavaScript tracer is currently running in each process/thread/target actor independently,
it is more complex to make it record across navigations as it may be spawn in a distinct process.
While it is fine for stdout and webconsole outputs (we could just spawn many concurrent tracers in each process),
this is more complex for the experimental "profiler" output.
For now, the profiler output automatically stops on target destruction and will open the profiler result.
By having an option to record on next page load, it prevent starting the tracer and prevent logging traces
for the current WindowGlobal. It should help focus on the new document.
For the profiler output, it prevents having the profiler to show up for the previous WindowGlobal.
Assignee | ||
Comment 2•11 months ago
|
||
Ensure updating the tracing state from the TracerCommand,
so that its internal state is correct whenever we start tracing
via the console or debugger.
Updated•10 months ago
|
Assignee | ||
Comment 3•10 months ago
|
||
This simplifies toggling the Tracer on all active targets.
But this will be especially useful in the next changeset.
This allows to have two distinct level of enabling:
- the target configuration
- the actual start of tracing done by the tracer (on user interaction or next page load)
Doing this allows to distinguish tracer simple enabling,
when "trace on next user interaction" is enabled,
where we can display a badge on the tracer icon to significate it isn't tracing just yet.
And actual start of the tracer, when the first user interaction happens,
where we can remove the badge.
Assignee | ||
Comment 4•9 months ago
|
||
Comment 6•9 months ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/8c6339deb7e7
https://hg.mozilla.org/mozilla-central/rev/afc06f3b3a4e
https://hg.mozilla.org/mozilla-central/rev/4a654c2d8847
https://hg.mozilla.org/mozilla-central/rev/e646ae20be18
Description
•