1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
//! The Rust [OpenTelemetry](https://opentelemetry.io/) implementation. //! //! OpenTelemetry provides a single set of APIs, libraries, agents, and collector //! services to capture distributed traces and metrics from your application. You //! can analyze them using [Prometheus], [Jaeger], and other observability tools. //! //! *Compiler support: [requires `rustc` 1.46+][msrv]* //! //! [Prometheus]: https://prometheus.io //! [Jaeger]: https://www.jaegertracing.io //! [msrv]: #supported-rust-versions //! //! ## Getting Started //! //! ```no_run //! # #[cfg(feature = "trace")] //! # { //! use opentelemetry::{sdk::export::trace::stdout, trace::Tracer, global}; //! //! fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> { //! // Create a new instrumentation pipeline //! let tracer = stdout::new_pipeline().install_simple(); //! //! tracer.in_span("doing_work", |cx| { //! // Traced app logic here... //! }); //! //! global::shutdown_tracer_provider(); // sending remaining spans //! //! Ok(()) //! } //! } //! ``` //! //! See the [examples](https://github.com/open-telemetry/opentelemetry-rust/tree/main/examples) //! directory for different integration patterns. //! //! ## Crate Feature Flags //! //! The following core crate feature flags are available: //! //! * `trace`: Includes the trace API and SDK (enabled by default). //! * `metrics`: Includes the unstable metrics API and SDK. //! * `serialize`: Adds [serde] serializers for common types. //! //! Support for recording and exporting telemetry asynchronously can be added //! via the following flags: //! //! * `rt-tokio`: Spawn telemetry tasks using [tokio]'s multi-thread runtime. //! * `rt-tokio-current-thread`: Spawn telemetry tasks on a separate runtime so that the main runtime won't be blocked. //! * `rt-async-std`: Spawn telemetry tasks using [async-std]'s runtime. //! //! [tokio]: https://crates.io/crates/tokio //! [async-std]: https://crates.io/crates/async-std //! [serde]: https://crates.io/crates/serde //! //! ## Working with runtimes //! //! Opentelemetry API & SDK supports different runtimes. When working with async runtime, we recommend //! to use batch span processors where the spans will be sent in batch, reducing the number of requests //! and resource needed. //! //! Batch span processors need to run a background task to collect and send spans. Different runtime //! needs different ways to handle the background task. //! //! ### Tokio //! //! Tokio currently offers two different schedulers. One is `current_thread_scheduler`, the other is //! `multiple_thread_scheduler`. Both of them default to use batch span processors to install span exporters. //! //! But for `current_thread_scheduler`. It can cause the program to hang forever if we schedule the backgroud //! task with other tasks in the same runtime. Thus, users should enable `rt-tokio-current-thread` feature //! to ask the background task be scheduled on a different runtime on a different thread. //! //! ## Related Crates //! //! 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: //! //! - [`opentelemetry-http`] provides a pipeline and exporter for sending //! trace information to [`http`]. //! - [`opentelemetry-jaeger`] provides a pipeline and exporter for sending //! trace information to [`Jaeger`]. //! - [`opentelemetry-otlp`] exporter for sending trace and metric data in the //! OTLP format to the OpenTelemetry collector. //! - [`opentelemetry-prometheus`] provides a pipeline and exporter for sending //! metrics information to [`Prometheus`]. //! - [`opentelemetry-zipkin`] provides a pipeline and exporter for sending //! trace information to [`Zipkin`]. //! - [`opentelemetry-datadog`] provides additional exporters to [`Datadog`]. //! - [`opentelemetry-aws`] provides unofficial propagators for AWS X-ray. //! - [`opentelemetry-contrib`] provides additional exporters and propagators that are experimental. //! - [`opentelemetry-semantic-conventions`] provides standard names and //! semantic otel conventions. //! //! Additionally, there are also several third-party crates which are not //! maintained by the `opentelemetry` project. These include: //! //! - [`tracing-opentelemetry`] provides integration for applications //! instrumented using the [`tracing`] API and ecosystem. //! - [`actix-web-opentelemetry`] provides integration for the [`actix-web`] web //! server and ecosystem. //! - [`opentelemetry-application-insights`] provides an unofficial [Azure //! Application Insights] exporter. //! - [`opentelemetry-tide`] provides integration for the [`Tide`] web server //! and ecosystem. //! - [`opentelemetry-stackdriver`] provides an exporter for Google's [Cloud Trace] //! (which used to be called StackDriver). //! //! 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! //! //! [`open-telemetry/opentelemetry-rust`]: https://github.com/open-telemetry/opentelemetry-rust //! [`opentelemetry-jaeger`]: https://crates.io/crates/opentelemetry-jaeger //! [`Jaeger`]: https://www.jaegertracing.io //! [`opentelemetry-otlp`]: https://crates.io/crates/opentelemetry-otlp //! [`opentelemetry-http`]: https://crates.io/crates/opentelemetry-http //! [`opentelemetry-prometheus`]: https://crates.io/crates/opentelemetry-prometheus //! [`opentelemetry-aws`]: https://crates.io/crates/opentelemetry-aws //! [`Prometheus`]: https://prometheus.io //! [`opentelemetry-zipkin`]: https://crates.io/crates/opentelemetry-zipkin //! [`http`]: https://crates.io/crates/http //! [`Zipkin`]: https://zipkin.io //! [`opentelemetry-contrib`]: https://crates.io/crates/opentelemetry-contrib //! [`opentelemetry-datadog`]: https://crates.io/crates/opentelemetry-datadog //! [`Datadog`]: https://www.datadoghq.com //! [`opentelemetry-semantic-conventions`]: https://crates.io/crates/opentelemetry-semantic-conventions //! //! [`tracing-opentelemetry`]: https://crates.io/crates/tracing-opentelemetry //! [`tracing`]: https://crates.io/crates/tracing //! [`actix-web-opentelemetry`]: https://crates.io/crates/actix-web-opentelemetry //! [`actix-web`]: https://crates.io/crates/actix-web //! [`opentelemetry-application-insights`]: https://crates.io/crates/opentelemetry-application-insights //! [Azure Application Insights]: https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview //! [`opentelemetry-tide`]: https://crates.io/crates/opentelemetry-tide //! [`Tide`]: https://crates.io/crates/tide //! [`opentelemetry-stackdriver`]: https://crates.io/crates/opentelemetry-stackdriver //! [Cloud Trace]: https://cloud.google.com/trace/ //! //! ## Supported Rust Versions //! //! OpenTelemetry is built against the latest stable release. The minimum //! supported version is 1.46. 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. #![warn( future_incompatible, missing_debug_implementations, missing_docs, nonstandard_style, rust_2018_idioms, unreachable_pub, unused )] #![allow(clippy::needless_doctest_main)] #![cfg_attr(docsrs, feature(doc_cfg), deny(broken_intra_doc_links))] #![doc( html_logo_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-rust/main/assets/logo.svg" )] #![cfg_attr(test, deny(warnings))] pub mod global; pub mod sdk; #[cfg(feature = "testing")] #[allow(missing_docs)] pub mod testing; pub mod baggage; mod context; pub use context::{Context, ContextGuard}; mod core; pub use crate::core::{Array, Key, KeyValue, Unit, Value}; pub mod runtime; pub mod util; #[cfg(feature = "metrics")] #[cfg_attr(docsrs, doc(cfg(feature = "metrics")))] pub mod labels; #[cfg(feature = "metrics")] #[cfg_attr(docsrs, doc(cfg(feature = "metrics")))] pub mod metrics; pub mod propagation; #[cfg(feature = "trace")] #[cfg_attr(docsrs, doc(cfg(feature = "trace")))] pub mod trace; #[cfg(any(feature = "metrics", feature = "trace"))] pub(crate) mod time { use std::time::SystemTime; #[cfg(not(target_arch = "wasm32"))] pub(crate) fn now() -> SystemTime { SystemTime::now() } #[cfg(target_arch = "wasm32")] pub(crate) fn now() -> SystemTime { SystemTime::UNIX_EPOCH + std::time::Duration::from_millis(js_sys::Date::now() as u64) } }