You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect that the otel-collector-1 container is starting without issues after local deployment.
Replacing jaeger with otlp at the marked places in the otel-collector-config.yaml solves the issue.
"jaeger" is no longer in the exporters values.
Environment
SeldonCoreV2 Installation on WSL Ubuntu-22.04
Docker Desktop v4.24.2
Windows Windows 10 Enterprise, 22H2
The text was updated successfully, but these errors were encountered:
- fixes dataflow engine logging errors by specifying the otel exporter protocol
the updates are needed because the opentelemetry-java-instrumentation library requires a http(s) URI for the otel collector endpoint, regardless of the actual protocol. As the default for us is grpc, explicitly set the OTEL_EXPORTER_OTLP_PROTOCOL environment variable on dataflow pods
- fixes otel-collector config to remove deprecated jagger exporter (jagger now supports otel directly).
add the OTEL_EXPORTED_OTLP_PROTOCOL key to the seldon-tracing configMap and update the operator, crds and helm charts to support getting the value for this key from tracing config, similarly to how OTEL_EXPORTER_OTLP_PROTOCOL is fetched
- update versions used by ansible for jagger and opentelemetry-operator
- port 14250 no longer needs to be exposed under any config
- fix dependency ordering for dataflow/gradle.
previous ordering caused kafka-streams not to be able to find the slf4j logging provider
this lead to logs produced by kafka-streams not being recorded
Fixes #
Internal issue references:
#INFRA-568 Jagger latest is crashing
#INFRA-464 Otel is not able to parse its config (deprecated exporters)
Public issues:
otel-collector-1 container not starting: #5189
related PR with partial otel functionality: #5170
Describe the bug
After following the installation guide for Docker Compose for SeldenCoreV2, the otel-collector-1 container cannot start due to the following error:
error decoding 'exporters': unknown type: "jaeger" for id: "jaeger" (valid values: [opensearch prometheus awsxray azuredataexplorer azuremonitor carbon cassandra mezmo sentry file honeycombmarker opencensus sumologic sapm skywalking alertmanager alibabacloud_logservice awscloudwatchlogs dataset googlecloud pulsar datadog f5cloud loadbalancing logicmonitor logzio logging clickhouse loki debug otlp awsemf coralogix instana tencentcloud_logservice dynatrace elasticsearch googlecloudpubsub prometheusremotewrite signalfx otlphttp awskinesis awss3 googlemanagedprometheus influxdb kafka splunk_hec syslog zipkin])
To reproduce
Expected behaviour
I expect that the otel-collector-1 container is starting without issues after local deployment.
Replacing jaeger with otlp at the marked places in the otel-collector-config.yaml solves the issue.
"jaeger" is no longer in the exporters values.
Environment
The text was updated successfully, but these errors were encountered: