Skip to content

Instantly share code, notes, and snippets.

@guaychou
Created May 17, 2020 09:10
Show Gist options
  • Save guaychou/98355d2dc52bb6d422c0814563a2065c to your computer and use it in GitHub Desktop.
Save guaychou/98355d2dc52bb6d422c0814563a2065c to your computer and use it in GitHub Desktop.
package main
import (
"log"
"github.com/shirou/gopsutil/mem"
"math"
)
func getMemoryUsage()int{
memory,err:=mem.VirtualMemory()
if err!=nil{
log.Fatal(err)
}
return int(math.Ceil(memory.UsedPercent))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment