Class suppressions for Spark doesn't work #2872
Unanswered
stevensim226
asked this question in
Q&A
Replies: 2 comments 2 replies
-
I think I posted on the wrong repository discussion as this is for manual instrumentation while my case is for auto instrumentation, sorry for that |
Beta Was this translation helpful? Give feedback.
0 replies
-
excluding probably you will need #1060 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to use OpenTelemetry's auto instrumentation agent to export traces for my microservices modules using Spark java deployed in a Kubernetes cluster which has a healthcheck system by sending calls to
/ping
which unfortunately also bloats my external storage (ElasticSearch) for storing the ping trace data.I found something in your docs about trace suppressions which I have tried using this system properties argument when running the
.jar
file with the java agent included =-Dotel.javaagent.exclude-classes="com.some.package.path.PingController"
but it doesn't seem to suppress the call to/ping
(contained in that class).Is there anything that I forgot to add?
Beta Was this translation helpful? Give feedback.
All reactions