-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use async-profiler with multiple options #227
Comments
Can you try with a I don't remember how but, IIRC, I used to use multiple options and it was working |
thanks! I tried, but changing from
|
I wonder if the issue is not with the /System/Volumes/Data/Users/jules/Library/Java/Extensions/libasyncProfiler.so
/System/Volumes/Data/Users/jules/Library/Java/Extensions/libasyncProfiler.dylib |
thank @guizmaii, your solution works like a charm. |
Hi, I just wanted upvote this problem - libPath needs to be the first option or it is ignored and the profiler doesn't load. Options following the libPath option (after a ';') are ignored. |
If you put the -prof options between double quotes it works: |
I'm trying to run
jmh
withasync-profiler
, but It seemsasync-profiler
cannot recognize the seconds options, for example:This doesn't recognize
libPath
option:bench / Jmh / run -rf json .*PerftBench* -prof async:output=flamegraph;libPath=path/async-profiler/build/libasyncProfiler.so
but this works for
libPath
but notoutput
:bench / Jmh / run -rf json .*PerftBench* -prof async:libPath=path/async-profiler/build/libasyncProfiler.so;output=flamegraph
The text was updated successfully, but these errors were encountered: