azure_core_opentelemetry 1.0.0

OpenTelemetry integration for the Azure SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]

mod attributes;
mod span;
mod telemetry;
mod tracer;

// Re-export the main types for convenience
pub use telemetry::OpenTelemetryTracerProvider;