# Only Performance Report

In heap dump analysis, the heap report is divided into two main sections: the Troubleshooting Report and the Performance Report. The troubleshooting report is helpful for diagnosing issues like memory leaks in your application, while the performance report provides insights for optimizing your application's performance.

By default, the analyzes your heap dump file to populate both these sections in the heap report. However, this process can consume additional memory and time, as the tool needs to parse the heap dump file to extract information for both troubleshooting and performance analyses.

If your main focus revolves around performance and you prefer to view only the performance report section within the heap report, you have the option to configure it. This configuration restricts the display to the performance report alone, enabling you to concentrate your efforts on optimizing your application.

# yCrash Enterprise Edition

Here are the steps to configure the flag in yCrash Enterprise Edition:

  1. Open the launch file: If you're using a Unix-based machine, open the launch-yc-server.sh file. For Windows machines, use the launch-yc-server.bat file.

  2. Add flag: Modify your launch file to include the -DonlyPerformanceReport=true system property. For example,

    java -Xms2g -Xmx4g -DlogDir=. -DuploadDir=. -DonlyPerformanceReport=true ...
    
    1
  3. Restart yCrash server: Save the changes to your launch file and restart the yCrash server to apply the updates.

# yCrash Cloud

Here are the steps to configure the flag in yCrash Cloud:

Coming Soon…