| Crates.io | rainmeter-remote-simple-metric-server |
| lib.rs | rainmeter-remote-simple-metric-server |
| version | 0.1.0 |
| created_at | 2025-11-29 12:42:07.171383+00 |
| updated_at | 2025-11-29 12:42:07.171383+00 |
| description | A HTTP server exposes CPU, RAM, disk IO, and network IO metrics as Rainmeter remote data |
| homepage | |
| repository | https://github.com/slow-groovin/rainmeter-remote-simple-metric-server |
| max_upload_size | |
| id | 1956647 |
| size | 19,279 |
A HTTP server exposes CPU, RAM, disk IO, and network IO metrics as Rainmeter remote data.
Files included:
.doc/rainmeter-skin.iniThis project runs a tiny HTTP server (default: 0.0.0.0:3000) that exposes basic system metrics such as CPU usage, memory, disk IO (read/write rates), and network IO (rx/tx rates). Metrics are printed as plain text, one metric per line, in the format key=[value], which makes it easy for tools like Rainmeter to parse using a regular expression.
Example output:
cpu=[15.7]
mem=[58]
swap=[0.0]
io_read=[0.0KB/s]
io_write=[0.0KB/s]
net_rx=[0.0KB/s]
net_tx=[0.0KB/s]
Use "vibe coding" to customize and extend the exporter to fit your needs.