Flame Graph - CI/CD用語集の定義
フレームグラフは、サンプリングした stack trace を水平に積み重ねたフレームとしてプロットし、バーの幅を各経路に費やされた時間(または割り当て)に比例させることで、profile における支配的なコストが即座に見えるようにします。
関連ガイド
Heap Profiling - CI/CD Glossary DefinitionHeap profiling samples where a program allocates memory and what stays live, helping find leaks and bloat tha…
Stack Trace - CI/CD Glossary DefinitionA stack trace is the ordered list of function calls active when an error occurred, showing the path the progr…
Bottleneck - CI/CD Glossary DefinitionA bottleneck is the single stage or resource that limits overall throughput, so the whole pipeline or system…