-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat(core): Add getTraceMetaTags
function
#13201
Merged
Merged
Conversation
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
getTracingMetaTags
functiongetTraceMetaTags
function
andreiborza
approved these changes
Aug 5, 2024
Co-authored-by: Andrei <168741329+andreiborza@users.noreply.github.com>
size-limit report 📦
|
andreiborza
approved these changes
Aug 6, 2024
This was referenced Aug 30, 2024
This was referenced Sep 4, 2024
This was referenced Sep 24, 2024
# for free
to join this conversation on GitHub.
Already have an account?
# 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.
Following #13134, this PR now exports a second function,
getTraceMetaTags
that gives users an easy way to get stringified Html meta tags for server->client trace propagation.Example usage:
API design note:
We briefly discussed returning an array of strings per meta tag instead of just one string. If reviewers prefer this, I'm happy to change the API accordingly but my thinking was that users should always add all meta tags returned by this function. Otherwise, the propagated trace state would be inconsistent. So I don't want to hand them an API that suggest they could pick one. Also, returning an array would make the API a tad less convenient to use and there's precedence for the simple string approach, for example in Laravel.
closes #8843
ref #8520