tiny PC monitor I made in Python. It tracks my CPU, memory, and disk usage every 10 seconds and saves it into a SQLite database. Then you can generate a simple HTML report to see the latest stats.
Used ChatGpt to debug code and write parts of README
tiny PC monitor I made in Python. It tracks my CPU, memory, and disk usage every 10 seconds and saves it into a SQLite database. Then you can generate a simple HTML report to see the latest stats.
Used ChatGpt to debug code and write parts of README
I worked on building a small PC monitor in Python that tracks CPU, memory, and disk usage every 10 seconds. I wrote agent.py to collect the data and store it in a SQLite database, and report.py to pull the latest records and generate an HTML report. I also figured out how to make it easy to run on both Windows and Raspberry Pi, using a virtual environment to handle dependencies like psutil. The goal was to make a simple, local tool where I can see my PC’s stats without relying on the internet.
Log in to leave a comment