Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felixge/go-stack-profiler
WIP
https://github.com/felixge/go-stack-profiler
Last synced: about 2 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/felixge/go-stack-profiler
- Owner: felixge
- License: mit
- Created: 2024-02-05T22:12:37.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-07T11:42:34.000Z (8 months ago)
- Last Synced: 2024-10-11T15:19:02.666Z (2 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 11
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-stack-profiler
Go stack profiler allows you to profile the size of your goroutine stacks.
## Usage
```bash
# create a stack profile from a binary and a goroutine profile
go-stack-profiler binary goroutine.pprof > stack.pprof# list the size of all functions in the given binary in descending order
go-stack-profiler binary
```