-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
GCP Exporter with quarkus native #102
Comments
Which version of Quarkus are you using? |
3.4.1 |
runtime initialization could be restricted to com.google.cloud.opentelemetry.trace.TraceConfiguration |
PR #104 is mandatory to fix the exporters. We might need additional PRs. |
We have a fix for the native image but we are stuck in a GraalVM bug now. |
I have the same issue, that's a blocking one. |
Unfortunately the exiting PR #104 will not fix this issue. |
It seems that the issue you mentioned, @brunobat, has been fixed. Is it working now? |
Will have to check on the next upgrade. |
I'm trying to deploy a native quarkus project in order to export on GCP, but I had some problems.
com.google.common.base.Preconditions.checkArgument
errorresolved with putting
--initialize-at-run-time=com.google.cloud.opentelemetry
, but I think it's too muchunable to create new instance of class com.google.api.client.json.GenericJson because it has no accessible default constructor
and another due to classcom.google.api.client.json.GenericJson
errorresolved with creating a
reflection-config.json
file with those 2 classesMy question is, there is a most valuable solution, that cloud be integrated in the extension codebase? ty
The text was updated successfully, but these errors were encountered: