I'm using the open telemetry java agent as documented here to instrument a Java Spring Boot application and export the traces to Google Cloud Trace.
My command is :
java \
-javaagent:/opentelemetry/opentelemetry-javaagent.jar \
-Dotel.javaagent.extensions=/opentelemetry/exporter-auto-0.22.0-alpha.jar \
-Dotel.traces.exporter=google_cloud_trace \
-Dotel.metrics.exporter=none \
-jar \
/app.jar
It works.
However since I'm deploying my application under kubernetes with a liveness probe the agent also records traces for the /actuator/health
endpoint.
I'd like to filter out these calls so that they are not recorded by the agent and sent to the collector.
The agent configuration documentation doesn't seem to cover this use case.
Is it possible to filter the traces by http calls but not yet documented ? Is it a planned feature ?