增加获取内存信息方法
This commit is contained in:
parent
b9ef776bcf
commit
1226d76055
19
system/memory.go
Normal file
19
system/memory.go
Normal file
@ -0,0 +1,19 @@
|
||||
// Package system...
|
||||
//
|
||||
// Description : system...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 2021-10-12 7:07 下午
|
||||
package system
|
||||
|
||||
import "github.com/shirou/gopsutil/mem"
|
||||
|
||||
// GetMemoryInfo 获取内存信息
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 7:07 下午 2021/10/12
|
||||
func GetMemoryInfo() (*mem.VirtualMemoryStat, error) {
|
||||
return mem.VirtualMemory()
|
||||
}
|
Loading…
Reference in New Issue
Block a user