ServiceContextModule
Common currency type for type-safe and Swift concurrency aware context propagation.
import ServiceContextModule
Module information
- Declarations
- 22
- Symbols
- 23
Overview
ServiceContext
is a minimal (zero-dependency) context propagation container, intended to “carry” baggage items for purposes of cross-cutting tools to be built on top of it.
It is modeled after the concepts explained in W3C Baggage and the in the spirit of Tracing Plane’s “Baggage Context” type, although by itself it does not define a specific serialization format.
See https://github.com/apple/swift-distributed-tracing for actual instrument types and implementations which can be used to deploy various cross-cutting instruments all reusing the same baggage type. More information can be found in the SSWG meeting notes.
Automatic propagation through task-locals by using
ServiceContext.current
is supported in Swift >= 5.5
Getting started
In order to depend on this library you can use the Swift Package Manager, and add the following dependency to your Package.swift
:
dependencies: [
.package(
url: "https://github.com/apple/swift-service-context.git",
from: "0.2.0"
)
]
and depend on the module in your target:
targets: [
.target(
name: "MyAwesomeApp",
dependencies: [
.product(
name: "ServiceContextModule",
package: "swift-service-context"
),
]
),
// ...
]
Usage
Please refer to in-depth discussion and documentation in the Swift Distributed Tracing repository.