-
Notifications
You must be signed in to change notification settings - Fork 913
Description
Describe the bug
A clear and concise description of what the bug is.
If
- I am using
AutoConfiguredOpenTelemetrySdkinstead ofOpenTelemetrySdk - I have
opentelemetry-resourcesin my classpath - I am using logback appender.
Then I lose the logs emitted before the install command is called.
If I
- either use
OpenTelemetrySdkor don't haveopentelemetry-resourcesin my classpath
I do not have this issue.
Also if I set a debug endpoint I can see the queued items in the "pre-install" in the logback correctly drained
and if I slowly step through the "emit" loop, most of them appear. This implies some sort of race.
Steps to reproduce
If possible, provide a recipe for reproducing the error.
- docker run -p 3000:3000 -p 4317:4317 -p 4318:4318 --rm -ti grafana/otel-lgtm
- System property pointing to logback file: -Dlogging.config=/Users/mbell/git/service-otj-mvc-demo/src/main/resources/logback-local.xml
- Env Vars: OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317;OTEL_EXPORTER_OTLP_PROTOCOL=grpc
What did you expect to see?
A clear and concise description of what you expected to see.
Several hundred log lines that had been queued
What did you see instead?
A clear and concise description of what you saw instead.
A couple of log lines
What version and what artifacts are you using?
Artifacts: (e.g., opentelemetry-api, opentelemetry-sdk, which exporters, etc)
Version: (e.g., v0.4.0, 1eb551b, etc)
How did you reference these artifacts? (excerpt from your build.gradle, pom.xml, etc)
<opentelemetry-instrumentation-bom.version>2.19.0-alpha</opentelemetry-instrumentation-bom.version>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.opentelemetry.instrumentation</groupId>
<artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
<version>${opentelemetry-instrumentation-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
Environment
Compiler: Correttto 17
OS:mac
Additional context
Add any other context about the problem here.
Spring 3.5.5. I'm using "Autoconfiguration", but not instrumentation nor Spring Boot AutoConfiguration/starter
If I add -Dotel.java.enabled.resource.providers=io.opentelemetry.sdk.autoconfigure.EnvironmentResourceProvider
which from the docs implies to me this is the ONLY configured ResourceProvider. Things work
this implies to me a faulty resource provider, but I don't know how to find it