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.
OTLP_ENDPOINT
1 parent a059696 commit 0332114Copy full SHA for 0332114
README.md
@@ -234,6 +234,8 @@ Options:
234
[env: JSON_OUTPUT=]
235
236
--otlp-endpoint <OTLP_ENDPOINT>
237
+ The grpc endpoint for opentelemetry. Telemetry is sent to this endpoint as OTLP over gRPC.
238
+ e.g. `http://localhost:4317`
239
[env: OTLP_ENDPOINT=]
240
241
--cors-allow-origin <CORS_ALLOW_ORIGIN>
router/src/main.rs
@@ -96,6 +96,8 @@ struct Args {
96
#[clap(long, env)]
97
json_output: bool,
98
99
+ /// The grpc endpoint for opentelemetry. Telemetry is sent to this endpoint as OTLP over gRPC.
100
+ /// e.g. `http://localhost:4317`
101
102
otlp_endpoint: Option<String>,
103
}
0 commit comments