diff options
author | 2023-09-07 13:20:37 +0200 | |
---|---|---|
committer | 2023-09-07 13:20:37 +0200 | |
commit | 14ef09809942800db57de87fe3963770a56b585b (patch) | |
tree | 89e95f21145bc7ad5745f77be1d998faa9c09695 /docs/configuration/observability.md | |
parent | [bugfix] fix checks for deref the same status descendants / ascendants (#2181) (diff) | |
download | gotosocial-14ef09809942800db57de87fe3963770a56b585b.tar.xz |
[feature] Support OTLP HTTP, drop Jaeger (#2184)
* [feature] Add http trace exporter, drop Jaeger
Jaeger supports ingesting traces using the OpenTelemetry gRPC or HTTP
methods. The Jaeger project has deprecated the old jaeger transport.
* Add support for submitting traces over HTTP
* Drop support for the old Jaeger protocol
* Upgrade the trace libraries to v1.17
Fixes: #2176
Fixes: #2179
Diffstat (limited to 'docs/configuration/observability.md')
-rw-r--r-- | docs/configuration/observability.md | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/docs/configuration/observability.md b/docs/configuration/observability.md index 6c812a8fc..c29074d1a 100644 --- a/docs/configuration/observability.md +++ b/docs/configuration/observability.md @@ -18,21 +18,20 @@ request-id-header: "X-Request-Id" # Default: false tracing-enabled: false -# String. Set the transport protocol for the tracing system. Can either be "grpc" for -# OTLP gRPC or "jaeger" for jaeger based ingesters. -# Options: ["grpc", "jaeger"] +# String. Set the transport protocol for the tracing system. Can either be "grpc" +# for OTLP gRPC, or "http" for OTLP HTTP. +# Options: ["grpc", "http"] # Default: "grpc" tracing-transport: "grpc" -# String. Endpoint of the trace ingester. When using the gRPC based transport, the -# endpoint is usually a single address/port combination. For the jaeger transport it -# should be a fully qualified URL. -# OTLP gRPC or "jaeger" for jaeger based ingesters -# Examples: ["localhost:4317", "http://localhost:14268/api/traces"] +# String. Endpoint of the trace ingester. When using the gRPC or HTTP based +# transports, provide the endpoint as a single address/port combination without a +# protocol scheme. +# Examples: ["localhost:4317"] # Default: "" tracing-endpoint: "" -# Bool. Disable HTTPS for the gRPC transport protocol. +# Bool. Disable TLS for the gRPC and HTTP transport protocols. # Default: false tracing-insecure-transport: false ``` |