Replies: 1 comment 11 replies
-
Hi @rchapin - sorry for the troubles. We've made many breaking changes since then, including separating metrics out to a separate artifact since it's not stable yet. You probably need to add the opentelemetry-sdk-metrics artifact to your build to get it back at the least. To be honest, we'll probably continue to make significant breaks for a few months so I'd recommend a different metrics mechanism for now if it's hard to keep up with our releases. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a Java 11 maven project in which I wrote a custom MetricExporter against the io.opentelemetry.sdk.metrics.export.MetricExporter interface.
Previously, the dependencies in my pom were as follows
My module-info.java entries were
I updated the dependencies in the pom to
After attempting to upgrade to 0.16.0 I can no longer resolve any of imports from the
io.opentelemetry.sdk.metrics
package or any of it's child packages. I am unable to add the aforementioned package to my list of required modules and as a result cannot compile the program.The list of modules output by the following command is identical between version 0.9.1 and 0.16.0.
Any help would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions