GeistHaus
log in · sign up

Off-CPU Flame Graphs

brendangregg.com
6 pages link to this URL
Flame Graphs

Flame Graphs # Flame Graphs are a visualization that effectively surfaces answers to questions like: Which methods are currently consuming CPU resources? How does consumption by one method compare to the others? Which series of calls on the stack led to executing a particular method? Flame Graph Flame Graphs are constructed by sampling stack traces a number of times. Each method call is presented by a bar, where the length of the bar is proportional to the number of times it is present in the samples.

1 inbound link article en docs
OCaml 5 performance problems

Linux and OCaml provide a huge range of tools for investigating performance problems. In this post I try using some of them to understand a network …

OCaml 5 performance part 2

The last post looked at using various tools to understand why an OCaml 5 program was waiting a long time for IO. In this post, I'll be trying out …