Is there a Kotlin performance profiler for Windows...
# announcements
f
Is there a Kotlin performance profiler for Windows?
g
JVM?
f
Yes
g
any Java profiler, as I know all of them work on Windows
f
Didn't think they would play well with Kotlin
s
there is an experimental CPU Profiler in IntelliJ Ultimate https://www.jetbrains.com/help/idea/cpu-profiler.html
g
Sure, profiler dispatch JVM calls, not source code, no difference between Java and Kotlin (except some possible profiler bugs)
This bundled Idea profiler is not available on Windows
👆 1
m
Java Flight Recorder and tools in the JDK? https://www.baeldung.com/java-flight-recorder-monitoring
Haven’t tried it, but it should work. The only thing is you may have to reverse engineer problems to your Kotlin Code. Not aware of a Kotlin aware profiler yet.
g
reverse engineer problems to your Kotlin Code.
What does it mean? You have names of all methods from Kotlin code, proper invocation stacks, no need to have special Kotlin profiler
☝️ 1