diff --git a/crates/ethereum/cli/src/app.rs b/crates/ethereum/cli/src/app.rs index ffbda96f981..c0e2e4662ca 100644 --- a/crates/ethereum/cli/src/app.rs +++ b/crates/ethereum/cli/src/app.rs @@ -119,7 +119,7 @@ where layers.with_span_layer( "reth".to_string(), output_type.clone(), - self.cli.traces.otlp_level.clone(), + self.cli.traces.otlp_filter.clone(), )?; } diff --git a/crates/node/core/src/args/trace.rs b/crates/node/core/src/args/trace.rs index b8c9bb18488..2e37feb6739 100644 --- a/crates/node/core/src/args/trace.rs +++ b/crates/node/core/src/args/trace.rs @@ -32,22 +32,22 @@ pub struct TraceArgs { /// of spans and events sent to the OTLP endpoint. It follows the same /// syntax as the `RUST_LOG` environment variable. /// - /// Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + /// Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off /// /// Defaults to TRACE if not specified. #[arg( - long = "tracing-otlp-level", + long = "tracing-otlp.filter", global = true, value_name = "FILTER", default_value = "TRACE", help_heading = "Tracing" )] - pub otlp_level: EnvFilter, + pub otlp_filter: EnvFilter, } impl Default for TraceArgs { fn default() -> Self { - Self { otlp: None, otlp_level: EnvFilter::from_default_env() } + Self { otlp: None, otlp_filter: EnvFilter::from_default_env() } } } diff --git a/crates/optimism/cli/src/app.rs b/crates/optimism/cli/src/app.rs index 7b6c2a0d004..621d16c7e13 100644 --- a/crates/optimism/cli/src/app.rs +++ b/crates/optimism/cli/src/app.rs @@ -124,7 +124,7 @@ where layers.with_span_layer( "reth".to_string(), output_type.clone(), - self.cli.traces.otlp_level.clone(), + self.cli.traces.otlp_filter.clone(), )?; } diff --git a/docs/vocs/docs/pages/cli/reth.mdx b/docs/vocs/docs/pages/cli/reth.mdx index f57862d464b..feb4e8bf50d 100644 --- a/docs/vocs/docs/pages/cli/reth.mdx +++ b/docs/vocs/docs/pages/cli/reth.mdx @@ -124,10 +124,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/config.mdx b/docs/vocs/docs/pages/cli/reth/config.mdx index 8f343b5f795..6c7cf532995 100644 --- a/docs/vocs/docs/pages/cli/reth/config.mdx +++ b/docs/vocs/docs/pages/cli/reth/config.mdx @@ -110,10 +110,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db.mdx b/docs/vocs/docs/pages/cli/reth/db.mdx index 4fd6d05eb42..04b779c0f13 100644 --- a/docs/vocs/docs/pages/cli/reth/db.mdx +++ b/docs/vocs/docs/pages/cli/reth/db.mdx @@ -175,10 +175,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/checksum.mdx b/docs/vocs/docs/pages/cli/reth/db/checksum.mdx index 7c79615d1f6..d4a32382302 100644 --- a/docs/vocs/docs/pages/cli/reth/db/checksum.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/checksum.mdx @@ -127,10 +127,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/clear.mdx b/docs/vocs/docs/pages/cli/reth/db/clear.mdx index a2637e7b3ce..5f1f9935b0f 100644 --- a/docs/vocs/docs/pages/cli/reth/db/clear.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/clear.mdx @@ -119,10 +119,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/clear/mdbx.mdx b/docs/vocs/docs/pages/cli/reth/db/clear/mdbx.mdx index eae01b35309..324e6f15ca2 100644 --- a/docs/vocs/docs/pages/cli/reth/db/clear/mdbx.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/clear/mdbx.mdx @@ -118,10 +118,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/clear/static-file.mdx b/docs/vocs/docs/pages/cli/reth/db/clear/static-file.mdx index 464155fb2a3..375692f315f 100644 --- a/docs/vocs/docs/pages/cli/reth/db/clear/static-file.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/clear/static-file.mdx @@ -121,10 +121,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/diff.mdx b/docs/vocs/docs/pages/cli/reth/db/diff.mdx index e5082ccd406..24c2493d6c8 100644 --- a/docs/vocs/docs/pages/cli/reth/db/diff.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/diff.mdx @@ -154,10 +154,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/drop.mdx b/docs/vocs/docs/pages/cli/reth/db/drop.mdx index 57eb5979d6f..58f4e3771b9 100644 --- a/docs/vocs/docs/pages/cli/reth/db/drop.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/drop.mdx @@ -117,10 +117,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/get.mdx b/docs/vocs/docs/pages/cli/reth/db/get.mdx index 5512c5ec826..93d12e2130e 100644 --- a/docs/vocs/docs/pages/cli/reth/db/get.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/get.mdx @@ -119,10 +119,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/get/mdbx.mdx b/docs/vocs/docs/pages/cli/reth/db/get/mdbx.mdx index 0fe1bea66dc..7f1a6e2a121 100644 --- a/docs/vocs/docs/pages/cli/reth/db/get/mdbx.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/get/mdbx.mdx @@ -127,10 +127,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/get/static-file.mdx b/docs/vocs/docs/pages/cli/reth/db/get/static-file.mdx index 3ae7fb0af29..7ec416f4a4d 100644 --- a/docs/vocs/docs/pages/cli/reth/db/get/static-file.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/get/static-file.mdx @@ -127,10 +127,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/list.mdx b/docs/vocs/docs/pages/cli/reth/db/list.mdx index 305aa6c0b85..7a9ee35145e 100644 --- a/docs/vocs/docs/pages/cli/reth/db/list.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/list.mdx @@ -160,10 +160,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/path.mdx b/docs/vocs/docs/pages/cli/reth/db/path.mdx index a86e52aee92..113fbb21509 100644 --- a/docs/vocs/docs/pages/cli/reth/db/path.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/path.mdx @@ -114,10 +114,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/repair-trie.mdx b/docs/vocs/docs/pages/cli/reth/db/repair-trie.mdx index 4547d9a7f5e..e4fd2eeb118 100644 --- a/docs/vocs/docs/pages/cli/reth/db/repair-trie.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/repair-trie.mdx @@ -117,10 +117,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/stats.mdx b/docs/vocs/docs/pages/cli/reth/db/stats.mdx index cc07cacd4f3..cb100a63e4f 100644 --- a/docs/vocs/docs/pages/cli/reth/db/stats.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/stats.mdx @@ -127,10 +127,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/db/version.mdx b/docs/vocs/docs/pages/cli/reth/db/version.mdx index 076c6b02a27..88616890e51 100644 --- a/docs/vocs/docs/pages/cli/reth/db/version.mdx +++ b/docs/vocs/docs/pages/cli/reth/db/version.mdx @@ -114,10 +114,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/download.mdx b/docs/vocs/docs/pages/cli/reth/download.mdx index adc1cca8895..f6b75e785d2 100644 --- a/docs/vocs/docs/pages/cli/reth/download.mdx +++ b/docs/vocs/docs/pages/cli/reth/download.mdx @@ -172,10 +172,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/dump-genesis.mdx b/docs/vocs/docs/pages/cli/reth/dump-genesis.mdx index cb7e8c91658..48ccb4855a6 100644 --- a/docs/vocs/docs/pages/cli/reth/dump-genesis.mdx +++ b/docs/vocs/docs/pages/cli/reth/dump-genesis.mdx @@ -113,10 +113,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/export-era.mdx b/docs/vocs/docs/pages/cli/reth/export-era.mdx index 79a3adc3155..0f769e77599 100644 --- a/docs/vocs/docs/pages/cli/reth/export-era.mdx +++ b/docs/vocs/docs/pages/cli/reth/export-era.mdx @@ -178,10 +178,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/import-era.mdx b/docs/vocs/docs/pages/cli/reth/import-era.mdx index 887dfafba80..71742b25b33 100644 --- a/docs/vocs/docs/pages/cli/reth/import-era.mdx +++ b/docs/vocs/docs/pages/cli/reth/import-era.mdx @@ -173,10 +173,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/import.mdx b/docs/vocs/docs/pages/cli/reth/import.mdx index 560a2b95041..80621a4deac 100644 --- a/docs/vocs/docs/pages/cli/reth/import.mdx +++ b/docs/vocs/docs/pages/cli/reth/import.mdx @@ -174,10 +174,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/init-state.mdx b/docs/vocs/docs/pages/cli/reth/init-state.mdx index 2827380087c..86132c163d4 100644 --- a/docs/vocs/docs/pages/cli/reth/init-state.mdx +++ b/docs/vocs/docs/pages/cli/reth/init-state.mdx @@ -197,10 +197,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/init.mdx b/docs/vocs/docs/pages/cli/reth/init.mdx index fea3a6c2cf0..81be59d6789 100644 --- a/docs/vocs/docs/pages/cli/reth/init.mdx +++ b/docs/vocs/docs/pages/cli/reth/init.mdx @@ -162,10 +162,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/node.mdx b/docs/vocs/docs/pages/cli/reth/node.mdx index ef3274001d8..3cf7fd0dda2 100644 --- a/docs/vocs/docs/pages/cli/reth/node.mdx +++ b/docs/vocs/docs/pages/cli/reth/node.mdx @@ -999,10 +999,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p.mdx b/docs/vocs/docs/pages/cli/reth/p2p.mdx index 1ea79131a1f..2fc4aa30849 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p.mdx @@ -111,10 +111,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p/body.mdx b/docs/vocs/docs/pages/cli/reth/p2p/body.mdx index 564dc463fcd..10efb9b85d7 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p/body.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p/body.mdx @@ -331,10 +331,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p/bootnode.mdx b/docs/vocs/docs/pages/cli/reth/p2p/bootnode.mdx index 608a42181bc..7541ba55651 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p/bootnode.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p/bootnode.mdx @@ -122,10 +122,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p/header.mdx b/docs/vocs/docs/pages/cli/reth/p2p/header.mdx index 05b34b4385b..f854ab9000b 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p/header.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p/header.mdx @@ -331,10 +331,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p/rlpx.mdx b/docs/vocs/docs/pages/cli/reth/p2p/rlpx.mdx index 6af29692abe..1d287c7cf09 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p/rlpx.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p/rlpx.mdx @@ -108,10 +108,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/p2p/rlpx/ping.mdx b/docs/vocs/docs/pages/cli/reth/p2p/rlpx/ping.mdx index 9dadabc42eb..d4f07885fea 100644 --- a/docs/vocs/docs/pages/cli/reth/p2p/rlpx/ping.mdx +++ b/docs/vocs/docs/pages/cli/reth/p2p/rlpx/ping.mdx @@ -108,10 +108,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/prune.mdx b/docs/vocs/docs/pages/cli/reth/prune.mdx index 72fcc82be51..202a14b2e19 100644 --- a/docs/vocs/docs/pages/cli/reth/prune.mdx +++ b/docs/vocs/docs/pages/cli/reth/prune.mdx @@ -162,10 +162,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/re-execute.mdx b/docs/vocs/docs/pages/cli/reth/re-execute.mdx index 6f5c281b958..2bb23f77d23 100644 --- a/docs/vocs/docs/pages/cli/reth/re-execute.mdx +++ b/docs/vocs/docs/pages/cli/reth/re-execute.mdx @@ -175,10 +175,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage.mdx b/docs/vocs/docs/pages/cli/reth/stage.mdx index c5cb65599f7..eed32a608be 100644 --- a/docs/vocs/docs/pages/cli/reth/stage.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage.mdx @@ -111,10 +111,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/drop.mdx b/docs/vocs/docs/pages/cli/reth/stage/drop.mdx index 8ada3ae1cca..b97fffa00d0 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/drop.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/drop.mdx @@ -176,10 +176,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/dump.mdx b/docs/vocs/docs/pages/cli/reth/stage/dump.mdx index 83af1939c22..6dbee5df10c 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/dump.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/dump.mdx @@ -169,10 +169,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/dump/account-hashing.mdx b/docs/vocs/docs/pages/cli/reth/stage/dump/account-hashing.mdx index 869f9292817..13819423bfd 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/dump/account-hashing.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/dump/account-hashing.mdx @@ -126,10 +126,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/dump/execution.mdx b/docs/vocs/docs/pages/cli/reth/stage/dump/execution.mdx index 2774f1a684b..73b24e9ba46 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/dump/execution.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/dump/execution.mdx @@ -126,10 +126,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/dump/merkle.mdx b/docs/vocs/docs/pages/cli/reth/stage/dump/merkle.mdx index 009e7cd3ab3..a5b3c0f4ff6 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/dump/merkle.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/dump/merkle.mdx @@ -126,10 +126,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/dump/storage-hashing.mdx b/docs/vocs/docs/pages/cli/reth/stage/dump/storage-hashing.mdx index 869990b351c..e6deadb2581 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/dump/storage-hashing.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/dump/storage-hashing.mdx @@ -126,10 +126,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/run.mdx b/docs/vocs/docs/pages/cli/reth/stage/run.mdx index a3fc1c1696f..2e9873034ff 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/run.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/run.mdx @@ -397,10 +397,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/unwind.mdx b/docs/vocs/docs/pages/cli/reth/stage/unwind.mdx index ca107a4f837..fa62d0546d6 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/unwind.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/unwind.mdx @@ -170,10 +170,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/unwind/num-blocks.mdx b/docs/vocs/docs/pages/cli/reth/stage/unwind/num-blocks.mdx index 2ef35c6b47c..2799b752fef 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/unwind/num-blocks.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/unwind/num-blocks.mdx @@ -118,10 +118,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified. diff --git a/docs/vocs/docs/pages/cli/reth/stage/unwind/to-block.mdx b/docs/vocs/docs/pages/cli/reth/stage/unwind/to-block.mdx index 1ac3b5d654b..d2056f7e349 100644 --- a/docs/vocs/docs/pages/cli/reth/stage/unwind/to-block.mdx +++ b/docs/vocs/docs/pages/cli/reth/stage/unwind/to-block.mdx @@ -118,10 +118,10 @@ Tracing: [env: OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=] - --tracing-otlp-level + --tracing-otlp.filter Set a filter directive for the OTLP tracer. This controls the verbosity of spans and events sent to the OTLP endpoint. It follows the same syntax as the `RUST_LOG` environment variable. - Example: --tracing-otlp-level=info,reth=debug,hyper_util=off + Example: --tracing-otlp.filter=info,reth=debug,hyper_util=off Defaults to TRACE if not specified.