Skip to main content

telemetry_rust/instrumentations/http/
mod.rs

1//! HTTP client instrumentation utilities.
2
3mod client;
4
5#[cfg(feature = "reqwest")]
6pub mod reqwest;
7
8#[cfg(any(
9    feature = "hyper-http1",
10    feature = "hyper-http2",
11    feature = "hyper-client-legacy"
12))]
13pub mod hyper;
14
15#[cfg(test)]
16mod test_utils;