Przejdź do głównej zawartości

Using the Profiler Panel

The profiler panel shows all your profiled methods in one place. Here’s how to use it effectively.


Click the GalataJ icon at the right bottom of your IDE.

IntelliJ — Profiler / Start Profiling


The top bar contains:

  • Start/Stop — Toggle profiling
  • JVM Selector — Choose which Java process to profile
  • Refresh — Update the JVM list
  • Health — Check system status

The main area shows all profiled methods with columns:

ColumnWhat it shows
MethodClass and method name
AvgAverage execution time
MaxMaximum execution time
CallsNumber of invocations
TrendPerformance change

The bottom shows:

  • Profiling status (Active/Stopped)
  • Connected JVM name
  • Last update time

Click any column header to sort:

  • Avg — Find your slowest methods
  • Calls — Find your most-called methods (N+1 query detection!)
  • Trend — Find methods that are getting slower

Click again to reverse the sort order.


Double-click any method to jump directly to its source code.

The IDE opens the file and positions your cursor at the method.


Keep it Visible

Dock the panel next to your editor for constant visibility

Sort by Avg First

Start with slowest methods — they have the most optimization potential

Watch for High Calls

High call count + low time often means N+1 queries

Check Trends

Rising trends (↑) mean something changed — investigate!