You've already forked go-profiler-notes
mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2025-07-15 23:54:16 +02:00
minor edits
This commit is contained in:
@ -6,8 +6,8 @@ Stack traces play a critical role in Go profiling. So let's try to understand th
|
|||||||
|
|
||||||
All Go profilers work by collecting samples of stack trace and putting them into [pprof profiles](./pprof.md). Ignoring some details, a pprof profile is just a frequency table of stack traces like shown below:
|
All Go profilers work by collecting samples of stack trace and putting them into [pprof profiles](./pprof.md). Ignoring some details, a pprof profile is just a frequency table of stack traces like shown below:
|
||||||
|
|
||||||
| stack trace | samples/count |
|
| stack trace | count |
|
||||||
| ------------ | ------------- |
|
| ------------ | ----- |
|
||||||
| main;foo | 5 |
|
| main;foo | 5 |
|
||||||
| main;foo;bar | 3 |
|
| main;foo;bar | 3 |
|
||||||
| main;foobar | 4 |
|
| main;foobar | 4 |
|
||||||
|
Reference in New Issue
Block a user