tracing-opentelemetry-kotlin in Kotlin

This is a Kotlin Multiplatform line-by-line transliteration port of tokio-rs/tracing-opentelemetry.
Original Project: This port is based on tokio-rs/tracing-opentelemetry. All design credit and project intent belong to the upstream authors; this repository is a faithful port to Kotlin Multiplatform with no behavioural changes intended.
Porting status
This is an in-progress port. The goal is feature parity with the upstream Rust crate while providing a native Kotlin Multiplatform API. Every Kotlin file carries a // port-lint: source <path> header naming its upstream Rust counterpart so the AST-distance tool can track provenance.
Upstream README — tokio-rs/tracing-opentelemetry
The text below is reproduced and lightly edited from https://github.com/tokio-rs/tracing-opentelemetry. It is the upstream project's own description and remains under the upstream authors' authorship; links have been rewritten to absolute upstream URLs so they continue to resolve from this repository.

Tracing OpenTelemetry
Utilities for adding OpenTelemetry interoperability to tracing.
Documentation | Chat
Overview
tracing is a framework for instrumenting Rust programs to collect
structured, event-based diagnostic information. This crate provides a
subscriber that connects spans from multiple systems into a trace and
emits them to OpenTelemetry-compatible distributed tracing systems
for processing and visualization.
The crate provides the following types:
Compatibility with OpenTelemetry crates
Note that version numbers for this crate are not synchronized with the
various OpenTelemetry crates, despite having similar version numbers. For
discussion, see issue #170.
As of 0.26, tracing-opentelemetry is one version ahead of the opentelemetry
crates, such that tracing-opentelemetry 0.26.0 is compatible with opentelemetry 0.25.0,
but due to semver compatibility concerns, this may not always be the case.
Visualizing traces with Jaeger
# Run a supported collector like jaeger in the background
$ docker run -d -p4317:4317 -p16686:16686 jaegertracing/all-in-one:latest
# Run example to produce spans (from parent examples directory)
$ cargo run --example opentelemetry-otlp
# View spans (see the image below)
$ firefox http://localhost:16686/

Feature Flags
metrics: Enables the MetricsLayer type, a layer that
exports OpenTelemetry metrics from specifically-named events. This enables
the metrics feature flag on the opentelemetry crate.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in Tracing by you, shall be licensed as MIT, without any additional
terms or conditions.
About this Kotlin port
Installation
dependencies {
implementation("io.github.kotlinmania:tracing-opentelemetry-kotlin:0.1.0")
}
Building
./gradlew build
./gradlew test
Targets
- macOS arm64
- Linux x64
- Windows mingw-x64
- iOS arm64 / simulator-arm64 (Swift export + XCFramework)
- JS (browser + Node.js)
- Wasm-JS (browser + Node.js)
- Android (API 24+)
Porting guidelines
See AGENTS.md and CLAUDE.md for translator discipline, port-lint header convention, and Rust → Kotlin idiom mapping.
License
This Kotlin port is distributed under the same MIT license as the upstream tokio-rs/tracing-opentelemetry. See LICENSE (and any sibling LICENSE-* / NOTICE files mirrored from upstream) for the full text.
Original work copyrighted by the tracing-opentelemetry authors.
Kotlin port: Copyright (c) 2026 Sydney Renee and The Solace Project.
Acknowledgments
Thanks to the tokio-rs/tracing-opentelemetry maintainers and contributors for the original Rust implementation. This port reproduces their work in Kotlin Multiplatform; bug reports about upstream design or behavior should go to the upstream repository.