We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F5 telemetry service requires the presence of the X-F5-OTEL set to GRPC.
X-F5-OTEL
GRPC
The exporter doesn't set this header by default.
Workaround - set it using Options when creating Exporter:
. . . options := []otlptracegrpc.Option{ otlptracegrpc.WithEndpoint(cfg.ProductTelemetryConfig.Endpoint), otlptracegrpc.WithHeaders(map[string]string{ "X-F5-OTEL": "GRPC", }), } if cfg.ProductTelemetryConfig.Insecure { options = append(options, otlptracegrpc.WithInsecure()) } var err error exporter, err = tel.NewExporter( tel.ExporterConfig{ SpanProvider: tel.CreateOTLPSpanProvider(options...), }, tel.WithGlobalOTelLogger(logger), tel.WithGlobalOTelErrorHandler(errorHandler), )
However, it should be done by default by the exporter library
The text was updated successfully, but these errors were encountered:
sjberman
Successfully merging a pull request may close this issue.
F5 telemetry service requires the presence of the
X-F5-OTEL
set toGRPC
.The exporter doesn't set this header by default.
Workaround - set it using Options when creating Exporter:
However, it should be done by default by the exporter library
The text was updated successfully, but these errors were encountered: