This repository was archived by the owner on Nov 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
chore: export baggage #71
Merged
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1067818
chore: export baggage
dyladan 0ad4492
chore: reorganize baggage folder
dyladan acfc0db
doc: add missing tsdocs
dyladan 2f4129a
chore: only export baggage types
dyladan a855846
chore: only export baggage types
dyladan 257d199
Merge branch 'main' into export-baggage
dyladan 16f6d98
chore: remove baggage index
dyladan 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 was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| /* | ||
| * Copyright The OpenTelemetry Authors | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * https://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { createContextKey } from '../context/context'; | ||
| import { Context } from '../context/types'; | ||
| import { Baggage } from './types'; | ||
|
|
||
| /** | ||
| * Baggage key | ||
| */ | ||
| const BAGGAGE_KEY = createContextKey('OpenTelemetry Baggage Key'); | ||
|
|
||
| /** | ||
| * @param {Context} Context that manage all context values | ||
| * @returns {Baggage} Extracted baggage from the context | ||
| */ | ||
| export function getBaggage(context: Context): Baggage | undefined { | ||
| return (context.getValue(BAGGAGE_KEY) as Baggage) || undefined; | ||
| } | ||
|
|
||
| /** | ||
| * @param {Context} Context that manage all context values | ||
| * @param {Baggage} baggage that will be set in the actual context | ||
| */ | ||
| export function setBaggage(context: Context, baggage: Baggage): Context { | ||
| return context.setValue(BAGGAGE_KEY, baggage); | ||
| } |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* | ||
| * Copyright The OpenTelemetry Authors | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * https://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { BaggageImpl } from './internal/baggage'; | ||
| import { baggageEntryMetadataSymbol } from './internal/symbol'; | ||
| import { Baggage, BaggageEntry, BaggageEntryMetadata } from './types'; | ||
|
|
||
| /** | ||
| * Create a new Baggage with optional entries | ||
| * | ||
| * @param entries An array of baggage entries the new baggage should contain | ||
| */ | ||
| export function createBaggage( | ||
| entries: Record<string, BaggageEntry> = {} | ||
| ): Baggage { | ||
| return new BaggageImpl(new Map(Object.entries(entries))); | ||
| } | ||
|
|
||
| /** | ||
| * Create a serializable BaggageEntryMetadata object from a string. | ||
| * | ||
| * @param str string metadata. Format is currently not defined by the spec and has no special meaning. | ||
| * | ||
| */ | ||
| export function baggageEntryMetadataFromString( | ||
| str: string | ||
| ): BaggageEntryMetadata { | ||
| if (typeof str !== 'string') { | ||
| // @TODO log diagnostic | ||
| str = ''; | ||
| } | ||
|
|
||
| return { | ||
| __TYPE__: baggageEntryMetadataSymbol, | ||
| toString() { | ||
| return str; | ||
| }, | ||
| }; | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.