Peter,
I am using java agent version - 4.4.3 (SUBVERSION=22593). I was testing automatic detection of kafka calls against demo application provided as on kafka streams quick-start page. Here is the source code for spring boot kafka stream sample application. When I run with an agent, node is showing on AppDyanamics dashboard but no automatic kafka call detection.
To run attached source code -
Follow steps 1, 2 and 3 as per stream quickstart page. Once you are done with creating topics. Run following commands to start the application.
//I asssume kakfa server is running on localhost:9092. //In case it doesn't please change broker url in WordCountTaskFactory.java file //on root of source code directory >mvn clean install
//After build is successful, to start application
>java -jar target\streams-wordcount-example-0.0.1-SNAPSHOT.jar
Now post some data to input topic - Step 5: Process some data
... View more