feat(performance-monitor-plugin): add waterfall timeline view#285
Open
draggie wants to merge 1 commit into
Open
feat(performance-monitor-plugin): add waterfall timeline view#285draggie wants to merge 1 commit into
draggie wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a waterfall timeline view to the Performance Monitor plugin. The new view
combines measures, metrics, marks, React Native marks, and resources into a
single chronological visualization so users can inspect ordering, overlap,
durations, and resource phases without replacing the existing table views.
Related Issue
Closes #251
Context
The waterfall complements the existing tabs by providing a timeline-oriented
view for startup and network investigations. Long idle gaps are normalized so
short events remain readable, while event durations remain exact. Resource
rows include phase segments such as worker, redirect, DNS, connect, TLS,
request/waiting, and response where timing data is available.
The details sidebar was adjusted to work alongside the timeline on wide panels
and fall back to an overlay on narrower DevTools layouts. Rows are virtualized
to keep larger sessions responsive.
Testing
Manually checked the waterfall view in the Performance Monitor panel with

a short and long session to verify that timeline units stay in milliseconds and the
visual layout remains readable.