Posts

Async-Profiler and Flame Graphs

Recently I decided to profile a java application with async-profiler rather than the often go-to options of JFR and perf. Async-profiler is a sampling profiler…

Read More »

Linux System Call Analysis

Building up a picture of system calls made by an application can help to breakdown processing steps and provide insight into I/O bottlenecks. The posts…

Read More »

JVM Symbol Table for Linux Perf

CPU profiling with Linux perf can help identify functions for investigation. To be able to translate memory addresses into readable function and variable names Linux…

Read More »