We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650ffb7 commit 8c2cfdfCopy full SHA for 8c2cfdf
opentelemetry-otlp/examples/basic-otlp/src/main.rs
@@ -80,10 +80,9 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
80
// Note: This filtering will also drop logs from these components even when
81
// they are used outside of the OTLP Exporter.
82
let filter_otel = EnvFilter::new("info")
83
- .add_directive("tokio=off".parse().unwrap())
+ .add_directive("hyper=off".parse().unwrap())
84
.add_directive("tonic=off".parse().unwrap())
85
.add_directive("h2=off".parse().unwrap())
86
- .add_directive("oxidizer=warn".parse().unwrap())
87
.add_directive("reqwest=off".parse().unwrap());
88
let otel_layer = otel_layer.with_filter(filter_otel);
89
0 commit comments