-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Propagation interface * minor doc fix * Rename interface Propagation to Propagator
- Loading branch information
1 parent
755f380
commit b359f3a
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
packages/opentelemetry-types/src/context/propagation/Propagator.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/** | ||
* Copyright 2019, 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 { SpanContext } from '../../trace/span_context'; | ||
|
||
/** Defines a Propagator interface. */ | ||
export interface Propagator { | ||
/** | ||
* Injects the given {@link SpanContext} instance to transmit over the wire. | ||
* | ||
* OpenTelemetry defines a common set of format values (BinaryFormat and | ||
* HTTPTextFormat), and each has an expected `carrier` type. | ||
* | ||
* @param spanContext the SpanContext to transmit over the wire. | ||
* @param format the format of the carrier. | ||
* @param carrier the carrier of propagation fields, such as an http request. | ||
*/ | ||
inject(spanContext: SpanContext, format: string, carrier: unknown): void; | ||
|
||
/** | ||
* Returns a {@link SpanContext} instance extracted from `carrier` in the | ||
* given format from upstream. | ||
* | ||
* @param format the format of the carrier. | ||
* @param carrier the carrier of propagation fields, such as an http request. | ||
* @returns SpanContext The extracted SpanContext, or null if no such | ||
* SpanContext could be found in carrier. | ||
*/ | ||
extract(format: string, carrier: unknown): SpanContext | null; | ||
} |
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