DaGeRe
DaGeRe
Thanks for the hint, adding `-Dpinpoint.modules.realtime.enabled=false` indeed stops the collector from exiting overall. Nevertheless, it still displays the `Failed to start bean 'redisMessageListenerContainer'` exception -- probably this needs some fixing....
Thanks, with this update, the example app starts, and using `java -Dserver.port=7070 -javaagent:pinpoint-agent-3.0.1/pinpoint-bootstrap-3.0.1.jar -Dpinpoint.agentId=test-agent -Dpinpoint.applicationName=TESTAPP -jar target/pinpoint-quickstart-testapp-3.1.0-SNAPSHOT.jar`, I can also see it in Pinpoint web. But the only thing I...
Thanks for the hint. Creating the requests and seeing them in the transaction view works, I've set `-Dprofiler.sampling.counting.sampling-rate=1`, and so I see every transaction. Unfortunately, for some reason, `/consumeCpu` is...
Thanks for the hints. I tried setting `profiler.include=com.navercorp.pinpoint.testapp.controller.SimpleController` and `profiler.entrypoint=com.navercorp.pinpoint.testapp.controller.SimpleController.sleep3` but both (and their combinations) didn't make profiling work. Additionally, I searched the pinpoint code base for the solution. I...
After extensive reading of the code, I found the issue: `profiler.pinpoint.base-package` needs to be set to the package (from https://github.com/pinpoint-apm/pinpoint/blob/b81be79c583180483ee817a56a7be71deed6376a/agent-module/profiler/src/main/java/com/navercorp/pinpoint/profiler/instrument/config/DefaultInstrumentConfig.java#L47). I'll create a PR to document this.
Thanks, having the repo in the kieker-monitoring organization is not an issue: https://github.com/kieker-monitoring/kieker-build Adding probably also isn't, but we'll have to deploy to dockerhub. I'll have a look at this,...
I just added curl to the used packages: https://github.com/kieker-monitoring/kieker-build/commit/f78f36fbf1586f1933c06cf20663d3b4ecbf11ee And afterwards, I installed it via ``` docker login --username=kiekerci docker build -t "kieker/kieker-build:openjdk11" . docker push kieker/kieker-build:openjdk11 ``` This seems...
Thanks for the feedback and sorry for the late reply, it was a very busy teaching term for me. When I run the command specified by you: ``` docker run...
Thanks for the hint, I overlooked the hint to replace the IP. Now, I replaced `10.1.2.30` by my IP, and ended up with the following commands: ``` MY_IP="192.168.178.28" docker run...
Sure, but its very easy: Just use `./mvnw` instead of `mvn` to run maven from the command line (so maven doesn't need to be installed any longer, and no dependence...