The Rust OpenTelemetry implementation
Go to file
Harold Dost 28d8cf9b6f
Add files to expose the currently used external types. (#1303)
To get ready for release candidate, we should keep track of these as it
affects how stable we can consider being.

Add check to CI.
2023-10-23 14:27:06 -07:00
.github Add files to expose the currently used external types. (#1303) 2023-10-23 14:27:06 -07:00
assets Add logos and overview section to crate readmes (#311) 2020-10-27 09:03:56 -07:00
examples Metric advanced examples - change histogram buckets (#1257) 2023-09-09 12:40:25 -04:00
opentelemetry Add files to expose the currently used external types. (#1303) 2023-10-23 14:27:06 -07:00
opentelemetry-appender-log feat: add InMemoryLogsExporter (#1231) 2023-09-02 15:26:35 -07:00
opentelemetry-appender-tracing Change opentelemetry crate to contain only the API, not the SDK #1186 (#1199) 2023-08-23 21:01:28 -07:00
opentelemetry-aws Change opentelemetry crate to contain only the API, not the SDK #1186 (#1199) 2023-08-23 21:01:28 -07:00
opentelemetry-contrib SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-datadog SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-dynatrace use futures-util instead of futures and with no default features 2023-08-30 10:03:57 +02:00
opentelemetry-http Change opentelemetry crate to contain only the API, not the SDK #1186 (#1199) 2023-08-23 21:01:28 -07:00
opentelemetry-jaeger SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-otlp Add OTLP HTTP Log Exporter example using tracing appender. (#1294) 2023-10-17 08:23:24 -07:00
opentelemetry-prometheus unwrap_or_default 2023-10-06 12:10:42 +02:00
opentelemetry-proto SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-sdk Add files to expose the currently used external types. (#1303) 2023-10-23 14:27:06 -07:00
opentelemetry-semantic-conventions Fix semconv template files (#1312) 2023-10-22 14:34:03 -07:00
opentelemetry-stackdriver chore: fix unused_doc_comments warning (#1309) 2023-10-20 10:22:53 -07:00
opentelemetry-stdout SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-user-events-logs [user_events log exporter] Upgrade eventheader-dynamic dependency (#1230) 2023-08-28 11:21:35 -04:00
opentelemetry-user-events-metrics Fix temporarlity and aggregation for usereventexporter (#1287) 2023-10-06 14:25:59 -04:00
opentelemetry-zipkin SpanAttributes modified to use Vec instead of OrderMap/EvictedHashMap (#1293) 2023-10-20 10:21:56 -07:00
opentelemetry-zpages Change opentelemetry crate to contain only the API, not the SDK #1186 (#1199) 2023-08-23 21:01:28 -07:00
scripts Change opentelemetry crate to contain only the API, not the SDK #1186 (#1199) 2023-08-23 21:01:28 -07:00
stress Add basic stress test for tracing (#1286) 2023-10-05 13:13:59 -04:00
.cspell.json Cleanup crate documentation (#1278) 2023-09-23 09:00:16 -07:00
.dockerignore test(jaeger): setup integration tests for jaeger (#739) 2022-02-20 13:02:43 -05:00
.gitignore opentelemetry-contrib api enhancements with new_span benchmark (#1232) 2023-09-12 21:49:10 -04:00
.gitmodules fix: unit conversion in prom exporter (#1157) 2023-07-23 23:11:20 -07:00
CODEOWNERS Add feature flag documentation to crates (#335) 2020-11-03 09:01:04 -08:00
CONTRIBUTING.md Propose Shaun Cox as an approver (#1251) 2023-09-09 12:36:03 -04:00
Cargo.toml Use edition 2021 resolver 2023-09-07 15:58:45 +02:00
LICENSE Adding Copyright Holders (#1112) 2023-06-16 11:39:25 -07:00
README.md bump MSRV to 1.64 and indexmap to 2.0 2023-08-11 23:40:30 +02:00
VERSIONING.md Add versioning documentation (#379) 2021-01-20 20:20:07 -08:00
deny.toml chore(common): fix deny. (#919) 2022-12-03 13:22:36 -08:00
precommit.sh fix: update metrics proto and metric transformation. (#535) 2021-05-02 15:38:50 -07:00
rustfmt.toml chore(common): bump MSRV to 1.56 (#866) 2022-09-01 00:36:37 -07:00

README.md

OpenTelemetry — An observability framework for cloud-native software.

OpenTelemetry Rust

The Rust OpenTelemetry implementation.

Crates.io: opentelemetry Documentation LICENSE GitHub Actions CI codecov Slack

Website | Slack | Documentation

Overview

OpenTelemetry is a collection of tools, APIs, and SDKs used to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior. You can export and analyze them using Prometheus, Jaeger, and other observability tools.

Compiler support: requires rustc 1.64+

Project Status

Signal Status
Logs Alpha*
Metrics Alpha
Traces Beta

*OpenTelemetry Rust is not introducing a new end user callable Logging API. Instead, it provides Logs Bridge API, that allows one to write log appenders that can bridge existing logging libraries to the OpenTelemetry log data model. The following log appenders are available:

If you already use the logging APIs from above, continue to use them, and use the appenders above to bridge the logs to OpenTelemetry. If you are using a library not listed here, feel free to contribute a new appender for the same.

If you are starting fresh, then consider using tracing as your logging API. It supports structured logging and is actively maintained.

Project versioning information and stability guarantees can be found here.

Getting Started

use opentelemetry::{
    global,
    sdk::trace::TracerProvider,
    trace::{Tracer, TracerProvider as _},
};

fn main() {
    // Create a new trace pipeline that prints to stdout
    let provider = TracerProvider::builder()
        .with_simple_exporter(opentelemetry_stdout::SpanExporter::default())
        .build();
    let tracer = provider.tracer("readme_example");

    tracer.in_span("doing_work", |cx| {
        // Traced app logic here...
    });

    // Shutdown trace pipeline
    global::shutdown_tracer_provider();
}

See the examples directory for different integration patterns.

Ecosystem

In addition to opentelemetry, the open-telemetry/opentelemetry-rust repository contains several additional crates designed to be used with the opentelemetry ecosystem. This includes a collection of trace SpanExporter and metrics pull and push controller implementations, as well as utility and adapter crates to assist in propagating state and instrumenting applications.

In particular, the following crates are likely to be of interest:

Additionally, there are also several third-party crates which are not maintained by the opentelemetry project. These include:

If you're the maintainer of an opentelemetry ecosystem crate not listed above, please let us know! We'd love to add your project to the list!

Supported Rust Versions

OpenTelemetry is built against the latest stable release. The minimum supported version is 1.64. The current OpenTelemetry version is not guaranteed to build on Rust versions earlier than the minimum supported version.

The current stable Rust compiler and the three most recent minor versions before it will always be supported. For example, if the current stable compiler version is 1.49, the minimum supported version will not be increased past 1.46, three minor versions prior. Increasing the minimum supported compiler version is not considered a semver breaking change as long as doing so complies with this policy.

Contributing

See the contributing file.

The Rust special interest group (SIG) meets weekly on Tuesdays at 9 AM Pacific Time (16:00 UTC). The meeting is subject to change depending on contributors' availability. Check the OpenTelemetry community calendar for specific dates and for Zoom meeting links. "OTel Rust SIG" is the name of meeting for this group.

Meeting notes are available as a public Google doc. If you have trouble accessing the doc, please get in touch on Slack.

The meeting is open for all to join. We invite everyone to join our meeting, regardless of your experience level. Whether you're a seasoned OpenTelemetry developer, just starting your journey, or simply curious about the work we do, you're more than welcome to participate!