Skip to content

intelink/sysmon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sysmon — Live telemetry dashboard

Dashboard web minimal care afișează în timp real CPU, RAM, disc, GPU NVIDIA și VRAM, direct dintr-un singur fișier Python (server.py) + un HTML standalone.

Port: 9090

Ce face

  • server.py — un ThreadingHTTPServer ce expune:
    • /index.html (dashboard)
    • /api/stats → JSON cu telemetrie live (psutil pentru CPU/RAM/disc, nvidia-smi parsat pentru GPU/VRAM)
  • index.html — pagină standalone care face polling la /api/stats și desenează grafice.

Install rapid

git clone https://github.com/intelink/sysmon.git
cd sysmon
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python server.py

Deschide: http://localhost:9090

Cerințe opționale

  • nvidia-smi în PATH (pentru GPU/VRAM). Fără el, secțiunile GPU apar goale.

Autostart (systemd)

# /etc/systemd/system/sysmon.service
[Unit]
Description=SYSMON live telemetry
After=network.target

[Service]
User=eae
WorkingDirectory=/home/eae/Documents/sysmon
ExecStart=/home/eae/Documents/sysmon/.venv/bin/python /home/eae/Documents/sysmon/server.py
Restart=on-failure

[Install]
WantedBy=multi-user.target
sudo systemctl enable --now sysmon.service

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors