dd-trace-java
dd-trace-java copied to clipboard
Datadog APM client for Java
Hi I have used the dd-trace-java agent to trace my service which is develop on top of Quarkus framework. However when DataDog agent wants to trace a vertx request generate...
We recently encountered a hard-to-reproduce issue in tracing and tracing metrics after upgrading our agent to 1.19+. Everything would start out fine, but after about an hour, we'd stop getting...
We get the following error when we try to run our application with the following configuration ` buildArgs.add("--strict-image-heap")` ``` Fatal error: org.graalvm.compiler.debug.GraalError: org.graalvm.compiler.debug.GraalError: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: An object of type 'datadog.trace.api.TracePropagationStyle' was...
If you use `CompletableFuture.completedFuture`, there is no problem. Or, No problems occur when DataDogAgent is not loaded by javaagent. ```kotlin class Test { fun test( id: Long, env: DataFetchingEnvironment, ):...
To provide some context, we’re currently migrating part of our observability stack to Datadog. In one of our Scala services, we noted that having Lightbend's Cinnamon sbt plugin together with...
per: https://github.com/DataDog/dd-trace-java/issues/2157#issue-756199296 The java agent is missing traces from anything that uses any of the connection pool apis: https://doc.akka.io/docs/akka-http/current/client-side/host-level.html https://doc.akka.io/docs/akka-http/current/client-side/connection-level.html https://doc.akka.io/docs/akka-http/current/client-side/request-level.html#flow-based-variant
This request is for flow-based requests to be instrumented. Support for this was removed in 681420a and #899, but the old implementation may not have worked. Currently it looks like...
Hi, my use case looks like this: service-A with dd-agent makes a request to 3rd party system-B, and system-B then produces the event, that my Kafka consumer will consume. However,...
The kafka producer decorator doesn't seem to read the record's headers for a span context to become the child of when they exist. This came up when trying to set...
I have followed the solution of this other [issue](https://github.com/DataDog/dd-trace-java/issues/709#issuecomment-1106701248) so the traces/spans of my Kafka consumer inherit my service name. it works, but the problem is that when the spans...