Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davecheney/gcvis

Visualise Go program GC trace data in real time
https://github.com/davecheney/gcvis

Last synced: 3 months ago
JSON representation

Visualise Go program GC trace data in real time

Awesome Lists containing this project

README

        


# This project is no longer maintained

I'm sorry but I do not have the bandwidth to maintain this tool. Please do not send issues or PRs. Thank you.


# gcvis

Visualise Go program gctrace data in real time

Note: GC timing graphs are only supported for go 1.6

## Usage

Running it directly:

```bash
env GOMAXPROCS=4 gcvis godoc -index -http=:6060
```

Adding the `gctrace` flag yourself:

```bash
GODEBUG=gctrace=1 godoc -index -http=:6060 2>&1 | gcvis
```

Or from a log file:

```bash
GODEBUG=gctrace=1 godoc -index -http=:6060 2> stderr.log
cat stderr.log | gcvis
```

Starting the server without automatically opening a browser:

```bash
gcvis -o=false godoc -index -http=:6060
```