Recommendations for memory profiler on java applications?

I am interested in benchmarking and monitoring my java applications. Could someone recommend any tools, frameworks or patterns one might use to profile java applications? Any advice is greatly appreciated!
4 Replies
JavaBot
JavaBot2w ago
This post has been reserved for your question.
Hey @DaMango! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
dan1st
dan1st2w ago
For (micro)benchmarking: Use JMH. Don't write benchmarks without JMH Profiling: There's async-profiler and VisualVM Other tools: JFR (JDK Flight recorder) which records a lot of events that happen (including custom events) and you can analyze them with a tool like jmd (Java Mission Control) If you are not really doing microbenchmarking but want to knowhow many requests you can handle per unit of time, there are also other tools that make such HTTP requests
JavaBot
JavaBot2w ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
JavaBot
JavaBot2w ago
Post Closed
This post has been closed by <@259732861232480257>.

Did you find this page helpful?