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
exporter/opensearch on otelcol-contrib version 0.93.0
I'm getting an error when trying to start otelcol-contrib using below config, any ideas on what could be wrong?
receivers: otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 extensions: basicauth/client: client_auth: username: user password: user exporters: opensearch/trace: http: endpoint: https://opensearch:9200 auth: authenticator: basicauth/client service: pipelines: traces: receivers: [otlp] exporters: [opensearch/trace] processors: [batch]
Error message that I'm seeing :
error decoding 'extensions': unknown type: "client_auth" for id: "client_auth" (valid values: [k8s_observer memory_ballast bearertokenauth ecs_task_observer ecs_observer host_observer headers_setter jaegerremotesampling docker_observer oidc pprof file_storage db_storage zpages http_forwarder oauth2client health_check sigv4auth asapclient awsproxy basicauth])
The text was updated successfully, but these errors were encountered:
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself.
Sorry, something went wrong.
Helly @AmythD, the error message is saying that there's no extension named client_auth. It looks like the problem is indentation in your config file.
client_auth
Original config:
extensions: basicauth/client: client_auth: username: user password: user
Should instead be:
client_auth is a configuration option within the basic_auth extension, not its own extension.
basic_auth
Pinging code owners for extension/basicauth: @jpkrohling @frzifus. See Adding Labels via Comments if you do not have permissions to add labels yourself.
No branches or pull requests
Component(s)
exporter/opensearch on otelcol-contrib version 0.93.0
Describe the issue you're reporting
I'm getting an error when trying to start otelcol-contrib using below config, any ideas on what could be wrong?
Error message that I'm seeing :
The text was updated successfully, but these errors were encountered: