Has ConfigBuilder been removed? #3043
Replies: 4 comments 3 replies
-
You can't mix & match versions like that. You need to use the bom to keep all the versions in sync with each other. |
Beta Was this translation helpful? Give feedback.
-
Also, yes, the ConfigBuilder has certainly been removed, to answer the original question. |
Beta Was this translation helpful? Give feedback.
-
Thanks guys - searching on Maven central was led me to believe that versions above were the latest for those artifacts. I see from the BOM that all versions are up to 1.0.1 |
Beta Was this translation helpful? Give feedback.
-
For anyone else stumbling upon this issue: It seems that at some point the exporter packages were renamed from E.g. opentelemetry-exporters-jaeger -> opentelemetry-exporter-jaeger, where you will encounter this issue if you try to use the older one (which sadly still shows up in top hits on Google when searching the contained classes). |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'm having an issue building in Maven -
The following code will not compile:
SimpleSpanProcessor processor = SimpleSpanProcessor.builder(exporter).build();
The builder above extends ConfigBuilder which appears to have been removed from io.opentelemetry.sdk.common.export
Any help would be greatly appreciated!
Using the following Maven dependencies:
opentelemetry-bom 1.0.1
opentelemetry-api 0.13.1
opentelemetry-sdk-tracing 0.11.0
opentelemetry-exporters-logging 0.9.1
opentelemetry-api-common 0.13.1
Beta Was this translation helpful? Give feedback.
All reactions