Simple GPU monitor for the SGVR H200 lab (MLXP) - kubectl-native dashboards, in-pod TUI, per-user usage stats
Project description
SGPU
SGVR GPU / Simple GPU monitor for the lab's MLXP H200 nodes — check the GPUs before you launch a pod.
- Every GPU process is attributed to its pod and owner (not just a PID).
- In-pod TUI (
kubectl exec -it) — smooth like nvitop, scroll/sort/filter. - Usage stats 24/7: per-owner GPU-hours, awards, GitHub-style activity calendar, idle-allocation warnings (KST).
- Shared storage (pv-01/pv-02) usage at a glance.
- Monitor pod is read-only, always-on, and requests no GPU.
Install
uvx sgpu # run without installing (uv)
pipx install sgpu # or pipx
pip install sgpu # or plain pip (WSL/Ubuntu: add --user --break-system-packages)
Needs kubectl configured for the MLXP namespace
(kubectl setup).
Use
sgpu interactive TUI sgpu stats [days] usage report + awards
sgpu once one-shot dashboard sgpu apps processes + owners
sgpu watch [sec] dumb-terminal loop sgpu nvitop raw nvitop
sgpu pods|smi|gpustat|json|health|version|--help
TUI keys: j/k scroll · Tab pane · s sort · o owner filter · p pause · q quit.
Options: -n namespace, --pod, -r refresh, --no-color. Env: SGPU_NAMESPACE, SGPU_POD.
Zero-install (kubectl only)
kubectl exec -it -n p-sgvr-node-02 sangmin-gpu-monitor -- python3 /opt/gpu-monitor/tui.py
kubectl exec -n p-sgvr-node-02 sangmin-gpu-monitor -- curl -fsS http://127.0.0.1:8080/table
Endpoints on :8080: /table /apps /json /stats /pods /smi /topo /gpustat /health /version /stats/files /stats/raw?date= (?color=1&cols=N&ascii=1).
Stats
Sampled every 15 s around the clock into raw JSONL (full fidelity — future
tools can recompute anything), gzipped + rolled up daily, stored on the
shared volume at pv-01/sangmin/sgpu. Retention 365 d, capped at 2 GB.
sgpu stats 30 shows the leaderboard, awards, daily activity calendar and
KST hour heatmap. Raw export: /stats/raw?date=YYYYMMDD.
The monitor pod must stay running for stats to accumulate — it is designed to (tini init,
restartPolicy: Always, no GPU held).
Deploy / operate
Image push works from anywhere via the registry's public endpoint
(sgvr-registry.kr.ncr.ntruss.com); the cluster pulls via the private
endpoint (vnxb4cz3.kr.private-ncr.ntruss.com, in-cluster only — preferred
per the MLXP guide). API key: NCP console → Access Management.
docker login sgvr-registry.kr.ncr.ntruss.com
docker build -f docker/Dockerfile.gpu-monitor -t sgvr-registry.kr.ncr.ntruss.com/sangmin/gpu-monitor:TAG .
docker push sgvr-registry.kr.ncr.ntruss.com/sangmin/gpu-monitor:TAG
kubectl delete pod sangmin-gpu-monitor -n p-sgvr-node-02 --ignore-not-found
kubectl apply -f k8s/gpu-monitor.yaml # pods are immutable: delete + apply
kubectl wait --for=condition=Ready pod/sangmin-gpu-monitor -n p-sgvr-node-02 --timeout=180s
Optional (enables the pod-allocation view + idle stats; kubelet syncs it in within a minute, no restart):
kubectl -n p-sgvr-node-02 create secret generic sgpu-kubeconfig --from-file=config=$HOME/.kube/config
Anyone with exec access to the monitor pod can read that token — fine inside a trusting lab namespace; use your least-privileged kubeconfig.
kubectl setup (Linux/WSL)
mkdir -p ~/.local/bin ~/.kube
V=$(curl -fsSL https://dl.k8s.io/release/stable.txt)
curl -fsSL -o ~/.local/bin/kubectl "https://dl.k8s.io/release/${V}/bin/linux/amd64/kubectl" && chmod +x ~/.local/bin/kubectl
cp /path/to/sgvr-node-02-kubeconfig.yaml ~/.kube/config && chmod 600 ~/.kube/config
kubectl get pods -n p-sgvr-node-02 # connectivity test
Development
SGPU_MOCK=1 python3 tools/gpu-monitor/server.py # full pipeline, no GPU needed
SGPU_MOCK=1 python3 tools/gpu-monitor/tui.py
python3 -m unittest discover -s tests
How it works: sgpu (thin Python client) → kubectl exec → monitor pod
(privileged, hostPID) where server.py renders everything; process→pod
attribution reads /proc/<pid>/environ (HOSTNAME = pod name), owner =
pod-name prefix. Known limits: pods overriding spec.hostname and MPS show
as ?.
Troubleshooting: broken terminal after a dropped TUI → reset · frozen TUI
→ rerun sgpu · garbled bars → Windows Terminal or --no-color.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sgpu-0.6.0.tar.gz.
File metadata
- Download URL: sgpu-0.6.0.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7164ffd7b029be687b6891569a4569c5d6f6977ee1813149ab5e7b4f345f455e
|
|
| MD5 |
11fa951173905940e47e3e8bc36e2a9d
|
|
| BLAKE2b-256 |
166bace67bffa319a0cab920dc686111ab63cb6520b301909a5cfed7aa5516e0
|
File details
Details for the file sgpu-0.6.0-py3-none-any.whl.
File metadata
- Download URL: sgpu-0.6.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3966068459ce2bce23549f648a4b60dc3464f39f9515b585d7a57c4f6bb009d2
|
|
| MD5 |
32b5168c028d9d11cbebce6bfb323b71
|
|
| BLAKE2b-256 |
fac89761840c86e26df92eb29f1d997b74f20ed63ec590124b55e29511834f8e
|