I need to profile a Kotlin application. What would...
# getting-started
m
I need to profile a Kotlin application. What would be some recommended tooling for that? Not looking for paid software.
🙌 1
j
IntelliJ has a profiler.
m
Unfortunately it does not, unless you have Ultimate, hence my question.
j
Oh, I guess I didn't realize that's an Ultimate feature. Android Studio also has a profiler, but likely only works for an Android app.
m
Yeah, Android Studio has a great profiler, but in this case I'm trying to profile a JVM application.
a
I just tried visualvm for the first time this past year. I liked it a lot. We profiled our kotlin app than runs on jvm.
n
IntelliJ uses async-profiler under the hood, which is free You can use it to profile and generate flame graphs
j
You could try to use my open-source profiling plugin for IntelliJ 🙂
or watch my JavaZone talk on open-source Java profilers: https://vimeo.com/861946709
561 Views