https://github.com/electricbubble/lazy-nmon
nmon辅助工具
https://github.com/electricbubble/lazy-nmon
Last synced: 8 months ago
JSON representation
nmon辅助工具
- Host: GitHub
- URL: https://github.com/electricbubble/lazy-nmon
- Owner: electricbubble
- Created: 2019-03-22T06:15:56.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T10:51:48.000Z (almost 6 years ago)
- Last Synced: 2025-01-22T09:46:02.929Z (over 1 year ago)
- Language: Go
- Size: 13.7 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lazy-nmon
nmon辅助工具,可直接提取nmon的结果文件中的CPU、Memory、Net、Disk生成图表展示。
**仅为试验性尝试,不打算再调整。**
**相关代码已PR至[eazyNmon](https://github.com/mzky/easyNmon)**
## 代码运行须知
`main.go`存放在`cmd/app`中,所以在调试阶段务必添加`wp`指定当前项目所在的绝对路径,以下为Visual Studio Code的`launch.json`
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "golang",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}",
"env": {},
"args": [
"-wp","/Users/hero/Documents/Workspace/Go/src/lazy_nmon"
]
}
]
}
```
## 感谢
参考[eazyNmon](https://github.com/mzky/easyNmon)项目
图表为[go-echarts](https://github.com/chenjiandongx/go-echarts)提供