Skip to main content
7 votes
1 answer
264 views

I have been observing a weird issue in my application. Recently we started observing a lot of exceptions of this type in our logs: IllegalArgumentException: Name for argument of type [java.lang.Long] ...
SargentD's user avatar
  • 385
0 votes
0 answers
27 views

I have a java program started from a .run.xml intellij config, intellij died but process kept running and working fine. Is it possible for me to reconnect/attach to it so I can see the stderr and ...
MortenB's user avatar
  • 3,853
0 votes
0 answers
33 views

For a Java application with Maven the following command works mvn exec:java \ -Dexec.mainClass="com.manuel.jordan.main.Main" \ -Dexec.cleanupDaemonThreads=false Observation: in the ...
Manuel Jordan's user avatar
1 vote
1 answer
234 views

What am I doing ? trying to create a Otel Extension and everything is working fine until the moment I use external libraries. Relevant context information: I am using Maven instead of Gradle. I don'...
Unova's user avatar
  • 11
0 votes
2 answers
80 views

Hi I'm trying to build a trace agent where app agent propagates the origin application name across the multiple network calls using the HTTPUrlConnection. So far, I was able to invoke the Advice ...
Jay_ran's user avatar
0 votes
1 answer
63 views

For test automation, my program starts the installer (= child process): Runtime.getRuntime().exec(new String[] { "installer.exe", "-J-javaagent:myagent.jar" }); The installer ...
Reto Höhener's user avatar
0 votes
1 answer
259 views

I'm trying to make a java agent to dump the caller of a method. I am using objectweb's ASM to transform the target method to invoke a function which dumps the caller and the internal state of the ...
a a's user avatar
  • 43
1 vote
0 answers
128 views

I have test java app with java agent opentelemetry instrumentation: -javaagent:/usr/src/app/opentelemetry-javaagent.jar -Dotel.instrumentation.log4j-context-data.enabled=true -Dotel.instrumentation....
Руслан Гильмутдинов's user avatar
0 votes
1 answer
64 views

I want to know my customer how to use my application. for example, i have a spring-web applicaiton. customer call the service 100 times. i want to analyst every time service's execute path. eg. 1 time ...
Eatin's user avatar
  • 21
1 vote
1 answer
70 views

I'm writing some code where I would like to instrument every method in a class that throws a specific exception, so I would like to have something like this: builder.method(ElementMatchers.canThrow(...
Gilles Coremans's user avatar
-1 votes
1 answer
79 views

I have created a simple, dummy OpenTelemetry Java Agent extension. It contains only one class and it looks like this: import com.google.auto.service.AutoService; import io.opentelemetry.sdk....
Harold L. Brown's user avatar
0 votes
1 answer
502 views

I am coding a Java Agent library. However, the JVM cannot find Agent_OnLoad function even if I have explicitly exported it in my C++ code. JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM* vm, char* ...
Rabbit0w0's user avatar
  • 105
1 vote
1 answer
125 views

I am working on a project where I need to write some header to the socket output stream right after the socket is connected. I want to intercept at low level such as java.net.Socket and its connect ...
MeowCat's user avatar
  • 23
2 votes
1 answer
286 views

Motivation Elastic APM Java agent does not support R2DBC. They provide a plugin API, which lets you add custom instrumentation to the agent, which the agent will automatically apply the same way as ...
Honza Zidek's user avatar
1 vote
1 answer
631 views

As shown in the following figure, a custom Java agent package is added to the JVM options -javaagent:/usr/local/maven/apache-maven-3.6.3/repository/com/graviton/Probe-Agent/1.0-SNAPSHOT/Probe-Agent-1....
Photon's user avatar
  • 29

15 30 50 per page
1
2 3 4 5
37