An OpenTelemetry client implementation for Swift.
"swift-otel" builds on top of Swift Distributed Tracing by implementing its instrumentation & tracing API. This means that any library instrumented using Swift Distributed Tracing will automatically work with "swift-otel".
In this guide we'll create a service called "example". It simulates and HTTP server receiving a request for product information. To handle this request, our "server" simulates querying a database. The first attempt, however, will fail. Our server copes with that failure by retrying the request which finally succeeds.
Throughout this example, you'll see the key aspects of "swift-otel" and using "Swift Distributed Tracing" in general.
To wet your appetite, here are screenshots from both Jaeger and Zipkin displaying a trace created by our "server":
You can find the source code of this example here.
To add "swift-otel" to our project, we first need to include it as a package dependency:
.package(url: "https://github.com/slashmo/swift-otel.git", from: "0.7.0"),
Then we add OpenTelemetry
to our executable target:
.product(name: "OpenTelemetry", package: "swift-otel"),
Now that we installed "swift-otel", it's time to bootstrap the instrumentation system to use OpenTelemetry.
Before we can retrieve a tracer we need to configure and start the main object OTel
:
import NIO
import OpenTelemetry
import Tracing
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
let otel = OTel(serviceName: "example", eventLoopGroup: group)
try otel.start().wait()
InstrumentationSystem.bootstrap(otel.tracer())
We should also not forget to shutdown OTel
and the EventLoopGroup
:
try otel.shutdown().wait()
try group.syncShutdownGracefully()
β οΈ With this setup, ended spans will be ignored and not exported to a tracing backend. Read on to learn more about how to configure processing & exporting.
To start processing and exporting spans, we must pass a processor to the OTel
initializer.
"swift-otel" comes with a number of built in processors and you can even build your own.
Check out the "Span Processors" section to learn more.
For now, we're going to use the SimpleSpanProcessor
. As the name suggests, this processor doesn't do much except
for forwarding ended spans to an exporter one by one. This exporter must be injected when initializing
the SimpleSpanProcessor
.
We want to export our spans to both Jaeger and Zipkin. The OpenTelemetry project provides the "OpenTelemetry Collector" which acts as a middleman between clients such as "swift-otel" and tracing backends such as Jaeger and Zipkin. We won't go into much detail on how to configure the collector in this guide, but instead focus on our "example" service.
We use Docker to run the OTel collector, Jaeger, and Zipkin locally. Both docker-compose.yaml
and
collector-config.yaml
are located in the "docker" folder of the "basic" example.
# In Examples/Basic
docker-compose -f docker/docker-compose.yaml up --build
After a couple of seconds everything should be up-and-running. Let's go ahead and
configure OTel to export to the collector. "swift-otel" contains a second library called
"OtlpGRPCSpanExporting", providing the necessary span exporter. We need to also include it in our target in
Package.swift
:
.product(name: "OtlpGRPCSpanExporting", package: "swift-otel"),
On to the fun part - Configuring the OtlpGRPCSpanExporter
:
let exporter = OtlpGRPCSpanExporter(
config: OtlpGRPCSpanExporter.Config(
eventLoopGroup: group
)
)
As mentioned above we need to inject this exporter into a processor:
let processor = OTel.SimpleSpanProcessor(exportingTo: exporter)
The only thing left to do is to tell OTel
to use this processor:
- let otel = OTel(serviceName: "example", eventLoopGroup: group)
+ let otel = OTel(serviceName: "example", eventLoopGroup: group, processor: processor)
Our demo application creates two spans: hello
and world
. To make things even more realistic we'll add an event to
the hello
span:
let rootSpan = InstrumentationSystem.tracer.startSpan("hello", context: .topLevel)
sleep(1)
rootSpan.addEvent(SpanEvent(
name: "Discovered the meaning of life",
attributes: ["meaning_of_life": 42]
))
let childSpan = InstrumentationSystem.tracer.startSpan("world", context: rootSpan.context)
sleep(1)
childSpan.end()
sleep(1)
rootSpan.end()
Note that we retrieve the the tracer through
InstrumentationSystem.tracer
instead of directly usingotel.tracer()
. This allows us to easily switch out the bootstrapped tracer in the future. It's also how frameworks/libraries implement tracing support without even knowing aboutOpenTelemetry
.
Finally, because the demo app start shutting down right after the last span was ended, we should add another delay to give the exporter a chance to finish its work:
+ sleep(1)
try otel.shutdown().wait()
try group.syncShutdownGracefully()
Now, when running the app, the trace including both spans will automatically appear in both Jaeger & Zipkin π You can find them at http://localhost:16686 & http://localhost:9411 respectively.
-
View the complete example here.
-
To learn more about the
InstrumentationSystem
, check out the Swift Distributed Tracing docs on the subject. -
To learn more about instrumenting your Swift code, check out the Swift Distributed Tracing docs on "instrumenting your code".
-
The "OpenTelemetry Collector" has many more configuration options. Check them out here.
"swift-otel" is designed to be easily customizable. This sections goes over the different moving parts that may be switched out with other non-default implementations.
When starting spans, the OTel Tracer will generate IDs uniquely identifying each trace/span. Creating a root span generates both trace and span ID. Creating a child span re-uses the parent's trace ID and only generates a new span ID.
A "W3C TraceContext" compatible RandomIDGenerator
is used
for this by default. As the name suggests, it generates completely random IDs.
Some tracing systems require IDs in a slightly different format.
XRayIDGenerator
from the X-Ray compatibility
library e.g. will include the current timestamp at the start of
each generated trace ID.
To create your own ID generator you need to implement the OTelIDGenerator
protocol.
Simply pass a different ID generator when initializing OTel
like this:
let otel = OTel(
serviceName: "service",
eventLoopGroup: group,
idGenerator: MyAwesomeIDGenerator()
)
- π API Docs: OTelIDGenerator
- π OpenTelemetry Specification: ID Generator
- 𧩠AWS X-Ray support library
If your application creates a large amount of spans you might want to look into sampling out certain spans. By default, "swift-otel" ships with a "parent-based" sampler, configured to always sample root spans using a "constant sampler". Parent-based means that this sampler takes into account whether the parent span was sampled.
To create your own sampler you need to implement the OTelSampler
protocol.
The OTel
initializer allows you to inject a sampler:
let otel = OTel(
serviceName: "service",
eventLoopGroup: group,
sampler: ConstantSampler(isOn: false)
)
The above configuration would sample out each span, i.e. no span would ever be exported.
- π API Docs: OTelSampler
- π API Docs: OTel.ParentBasedSampler
- π API Docs: OTel.ConstantSampler
- π OpenTelemetry Specification: Sampling
Span processors get passed read-only ended spans. The most common use-case of this is to forward the ended span to an
exporter. The built-in SimpleSpanProcessor
forwards them immediately one-by-one.
To create your own span processor you need to implement the OTelSpanProcessor
protocol.
To configure which span processor should be used, pass it along to the OTel
initializer:
let otel = OTel(
serviceName: "service",
eventLoopGroup: group,
processor: MyAwesomeSpanProcessor()
)
- π API Docs: OTelSpanProcessor
- π API Docs: OTel.SimpleSpanProcessor
- π OpenTelemetry Specification: Span Processor
To actually send span data to a tracing backend like Jaeger, spans need to be
"exported". OtlpGRPCSpanExporting
, which is a library included in this package
implements exporting using the OpenTelemetry protocol (OTLP) by sending span data via gRPC to the
OpenTelemetry collector. The collector can then be
configured to forward received spans to tracing backends.
To create your own span exporter you need to implement the OTelSpanExporter
protocol.
Instead of passing the exporter directly to OTel
, you need to wrap it inside a
span processor:
let otel = OTel(
serviceName: "service",
eventLoopGroup: group,
processor: SimpleSpanProcessor(
exportingTo: MyAwesomeSpanExporter()
)
)
- π API Docs: OTelSpanExporter
- π API Docs: OtlpGRPCSpanExporter
- π OpenTelemetry Collector
- π OpenTelemetry Specification: Span Exporter
OpenTelemetry uses the W3C TraceContext format to propagate
span context across HTTP requests by default. Some tracing backends may not fully support this standard and need to use
a custom propagator. X-Ray e.g. propagates using the X-Amzn-Trace-Id
header. Support for this header is implemented
in the X-Ray support library.
To create your own propagator you need to implement the OTelPropagator
protocol.
Pass your propagator of choice to the OTel
initializer like this:
let otel = OTel(
serviceName: "service",
eventLoopGroup: group,
propagator: MyAwesomePropagator()
)
- π API Docs: OTelPropagator
- π API Docs: W3CPropagator
- π OpenTelemetry Specification: Propagators API
When investigating traces it is often helpful to not only see insights about your application but also about the system
(resource) it's running on. One option of including such information would be to set a bunch of span attributes on every
span. But this would be cumbersome and inefficient. Therefore, OpenTelemetry has the concept of resource detection.
Resource detectors run once on start-up, detect some attributes collected in a Resource
and hand them off to OTel
.
From then on, the resulting Resource
will be passed along to span exporters for them to include these attributes.
"swift-otel" comes with two built-in resource detectors which are enabled by default:
This detector collects information such as the process ID and executable name.
This detector allows you to specify resource attributes through an environment variable. This comes in handy for attributes that you don't know yet at built-time.
To create your own resource detector you need to implement the OTelResourceDetector
protocol.
There are three possible settings for resource detection represented by the OTelResourceDetection
enum:
// 1. Automatic, the default
OTel.ResourceDetection.automatic(
additionalDetectors: [MyAwesomeDetector()]
)
// 2. Manual
OTel.ResourceDetection.manual(
OTel.Resource(attributes: ["key": "value"])
)
// 3. None, i.e. disabled
OTel.ResourceDetection.none
- π API Docs: OTelResourceDetector
- π API Docs: OTelResourceDetection
- π OpenTelemetry Specification: Resource
To ensure a consistent code style we use SwiftFormat.
To automatically run it before you push to GitHub, you may define a pre-push
Git hook executing
the soundness script:
echo './scripts/soundness.sh' > .git/hooks/pre-push
chmod +x .git/hooks/pre-push