Skip to content

Instantly share code, notes, and snippets.

@j33ty
Created May 22, 2019 20:54
Show Gist options
  • Star 58 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save j33ty/79e8b736141be19687f565ea4c6f4226 to your computer and use it in GitHub Desktop.
Save j33ty/79e8b736141be19687f565ea4c6f4226 to your computer and use it in GitHub Desktop.
Go print current memory
package main
import (
"runtime"
"fmt"
"time"
)
func main() {
// Print our starting memory usage (should be around 0mb)
PrintMemUsage()
var overall [][]int
for i := 0; i<4; i++ {
// Allocate memory using make() and append to overall (so it doesn't get
// garbage collected). This is to create an ever increasing memory usage
// which we can track. We're just using []int as an example.
a := make([]int, 0, 999999)
overall = append(overall, a)
// Print our memory usage at each interval
PrintMemUsage()
time.Sleep(time.Second)
}
// Clear our memory and print usage, unless the GC has run 'Alloc' will remain the same
overall = nil
PrintMemUsage()
// Force GC to clear up, should see a memory drop
runtime.GC()
PrintMemUsage()
}
// PrintMemUsage outputs the current, total and OS memory being used. As well as the number
// of garage collection cycles completed.
func PrintMemUsage() {
var m runtime.MemStats
runtime.ReadMemStats(&m)
// For info on each, see: https://golang.org/pkg/runtime/#MemStats
fmt.Printf("Alloc = %v MiB", bToMb(m.Alloc))
fmt.Printf("\tTotalAlloc = %v MiB", bToMb(m.TotalAlloc))
fmt.Printf("\tSys = %v MiB", bToMb(m.Sys))
fmt.Printf("\tNumGC = %v\n", m.NumGC)
}
func bToMb(b uint64) uint64 {
return b / 1024 / 1024
}
@hyungi
Copy link

hyungi commented Nov 23, 2022

@j33ty Quite useful!

@yayayahei
Copy link

@j33ty This script helped me resolve the OOM error. Appreciate!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment