A terminal-based system monitor written in Go that displays CPU, memory, GPU, and process information in real-time.
- Real-time CPU usage (overall and per-core)
- Memory usage statistics
- GPU usage and memory (via nvidia-smi for NVIDIA or rocm-smi for AMD, if available)
- Top processes by CPU usage
- Clean, readable terminal interface
- Go 1.21 or later
- Linux system (for system stats)
- nvidia-smi (optional, for NVIDIA GPU stats)
- rocm-smi (optional, for AMD GPU stats)
bin is a lightweight binary manager that makes installing and updating sysmon easy:
# Install bin if you don't have it
curl -sSfL https://raw.githubusercontent.com/marcosnils/bin/master/install.sh | sh
# Install sysmon using bin
bin install github.com/PinePeakDigital/sysmonAfter installation, sysmon will be available in your PATH (typically ~/.local/bin/ on Linux/macOS).
go mod tidy
go build -o sysmon./sysmonPress q or Ctrl+C to exit.
The TUI displays:
- CPU and GPU usage percentages
- Memory and GPU memory percentages
- Per-core CPU usage (4 cores per line)
- Top 10 processes by CPU usage (PID, CPU%, MEM%, COMMAND)