A library for tracking Golang process metrics
// Log records Golang process metrics such as HeapAlloc, NumGC, etc... every
// frequency time period. This function never returns so it should be called from
// a Goroutine.
Log(source string, frequency time.Duration)
The tests can be run with:
$ make test