swift-distributed-tracing-baggage-core

0.1.1

Minimal context propagation container
apple/swift-distributed-tracing-baggage-core

What's New

0.1.1

2020-12-04T10:42:45Z

Same as 0.1.0, just released for consistency.

🧳 Distributed Tracing Baggage Core

📔 NOTE: It is very unlikely that you want to depend on this package itself.

Most libraries and projects should depend on and use the https://github.com/apple/swift-distributed-tracing-baggage package instead, unless avoiding the SwiftLog dependency is necessary.

Baggage 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.

Please refer to Swift Distributed Tracing Baggage and Swift Distributed Tracing for usage guides of this type.

Dependency

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(
    name: "swift-baggage-context-core",
    url: "https://github.com/apple/swift-distributed-tracing-baggage-core.git",
    from: "0.1.0"
  )
]

and depend on the module in your target:

targets: [
    .target(
        name: "MyAwesomeApp",
        dependencies: [
            "CoreBaggage",
        ]
    ),
    // ... 
]

Usage

Please refer to Swift Distributed Tracing Baggage for the intended usage, and detailed guidelines.

Alternatively, please refer to the API documentation of the Baggage type.

Contributing

Please make sure to run the ./scripts/sanity.sh script when contributing, it checks formatting and similar things.

You can make ensure it always is run and passes before you push by installing a pre-push hook with git:

echo './scripts/sanity.sh' > .git/hooks/pre-push

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 17 2024 12:45:28 GMT-0900 (Hawaii-Aleutian Daylight Time)