1 Star 0 Fork 0

MrCoder/gsi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
memory.go 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2024-01-12 10:24 . init commit
// Copyright © 2016 Zlatko Čalušić
//
// Use of this source code is governed by an MIT-style license that can be found in the LICENSE file.
package gsi
import (
"github.com/shirou/gopsutil/v3/mem"
)
// Memory information.
type Memory struct {
Total uint64 `json:"total"`
}
func (info *Memory) getMemoryInfo() {
v, err := mem.VirtualMemory()
if err != nil {
return
}
info.Total = v.Total
}
func (i *Memory) YAMLString() string {
return SafeYAML(i)
}
func (i *Memory) JSONString(indent bool) string {
return SafeJSON(i, indent)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/konglinglong/gsi.git
git@gitee.com:konglinglong/gsi.git
konglinglong
gsi
gsi
2635a03226df

搜索帮助

0d507c66 1850385 C8b1a773 1850385