Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/how-to/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ If you feel intrepid, you can dump this information and investigate it yourself:
1. goroutine dump:

```shell
curl localhost:5001/debug/pprof/goroutine\?debug=2 > ipfs.stacks`
curl localhost:5001/debug/pprof/goroutine\?debug=2 > ipfs.stacks
```

1. 30-second cpu profile:

```shell
curl localhost:5001/debug/pprof/profile > ipfs.cpuprof`
curl localhost:5001/debug/pprof/profile > ipfs.cpuprof
```

1. heap trace dump:
Expand All @@ -125,7 +125,7 @@ If you feel intrepid, you can dump this information and investigate it yourself:
1. System information:

```shell
ipfs diag sys > ipfs.sysinfo`
ipfs diag sys > ipfs.sysinfo
```

### Analyzing the stack dump
Expand Down