mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2026-06-21 00:46:51 +08:00
fix link
This commit is contained in:
parent
48693a2c50
commit
2eda5cc663
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ The next step is to find the program counters of all the callers of the current
|
|||
|
||||
Looking at pretty pictures can be a good way to get a high level understanding of the stack, but it has its limits. Sometimes you need to look at the raw bits & bytes in order to get a full understanding. If you're not interested in that, feel free to skip ahead to the next section.
|
||||
|
||||
To take a look at the stack, we'll use [delve](https://github.com/go-delve/delve) which is a wonderful debugger for Go. In order to inspect the stack, I wrote a script called [stackannotate.star](./delve/stackannotate.star) that can used to print the annotated stack for a simple [example program](examples/stackannotate/main.go):
|
||||
To take a look at the stack, we'll use [delve](https://github.com/go-delve/delve) which is a wonderful debugger for Go. In order to inspect the stack, I wrote a script called [stackannotate.star](./delve/stackannotate.star) that can used to print the annotated stack for a simple [example program](./examples/stackannotate/main.go):
|
||||
|
||||
```
|
||||
$ dlv debug ./examples/stackannotate/main.go
|
||||
|
|
|
|||
Loading…
Reference in a new issue