Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 1015 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 1015 Bytes

gcterm

codebeat badge Go Report Card Build Status Coverage Status

Demo

Usage

First, enable tracing of GC events in your application using the GODEBUG variable:

GODEBUG=gctrace=1

Redirect standard error to a file:

$ myapp 2> stderr.log

Now you should be able to visualize GC events in your terminal:

$ tail -f stderr.log | gcterm

Currently, only applications built with Go 1.6 and Go 1.7 are supported.