-
Notifications
You must be signed in to change notification settings - Fork 27.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix cardinality of opentelemetry span names on client-side navigation #64852
Open
PatNeedham
wants to merge
16
commits into
vercel:canary
Choose a base branch
from
PatNeedham:fix/telemetry-client-navigation
base: canary
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
878cf30
Fix cardinality of opentelemetry span names on client-side navigation
PatNeedham 7f5044b
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham c9f8807
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham 12e9ed1
Merge branch 'canary' into fix/telemetry-client-navigation
samcx 87c14e4
app router(client-side navigation) otel e2e test
PatNeedham 79b528a
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham 6006658
fix lint error
PatNeedham 5c82b10
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham 86334ee
more closely align client-side nav test with neighboring ones
PatNeedham 500a79e
test trace modifications
PatNeedham 63bbd54
all trace attributes good except parentId
PatNeedham f262d02
omit hard-coded and unnecessary id
PatNeedham 7f1326e
traceId and parentId modifications
PatNeedham 0527990
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham a026264
change to snapshot for test assertion
PatNeedham e28b95c
Merge branch 'canary' into fix/telemetry-client-navigation
PatNeedham File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why move it up? Are some steps below sensitive to it?
Overall, the
pagePath
is not a great value here and it takes some time to update it to the right value. IMHO, too late.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes - the
if (isRSCRequest && !isStaticGeneration) { ... }
check is where this function can end early, which affects whethernext.route
gets set.But also, the snapshot testing looks problematic, for example this is from the most recent PR build-and-test logs:
id, parentId, timestamp, traceId & duration values appear dependent on something that's preventing consistent results. Maybe jest.setSystemTime could address the timestamp part? For the others I'm not sure what might ensure that consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can definitely just use
matchAny
for timestamp and duration. And probably for traceId. However, id and parentId are not so simple - they represent the nesting hierarchy which is somewhat important for telemetry. We can matchAny them too, but maybe we can find a way to link them up? E.g. maybe we can drop id/parentId, but instead add a synthetic parentName? That way we can test hierarchy as well.