Java 17 and Yourkit 2021.11

Viewed 198

Java 11 and yourkit 2020.9 working for me. Made upgrade to java 17 and yourkit 2021.11, yourkit not working for me.

Used this doc: https://www.yourkit.com/docs/java/help/docker.jsp to add yourkit 2021.11 to docker but getting error when running it:

[YourKit Java Profiler 2021.11-b220] Log file: /home/kek/.yjp/log/test-8.log
terminate called after throwing an instance of 'std::system_error'
what():  No error information

How I can see what inside of /home/kek/.yjp/log/test-8.logor does java 17 and yourkit 2021.11 work for you?

2 Answers

The issue was that azul/zulu-openjdk-alpine:17-jre-headless and yourkit not compatible, some library were not there for yourkit(didn't dig much), so by moving to azul/zulu-openjdk-debian:17-jre-headless fixed incompatibility for me.

Related