Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sarthakpranesh/pi_meter

Raspberry Pi 5 system monitor
https://github.com/sarthakpranesh/pi_meter

bun docker monitoring raspberry-pi raspberry-pi-5 react reactjs

Last synced: about 2 months ago
JSON representation

Raspberry Pi 5 system monitor

Awesome Lists containing this project

README

        

# Pi Meter
A simple Raspberry Pi 5 system monitoring tool build with Bun and React, which you can deploy with one Docker command.

![Screenshot 2024-09-28 at 12-53-46 Vite React TS](https://github.com/user-attachments/assets/43202d38-9316-4a11-af27-dc8b12038d7d)

## Deploy
Run the following docker command to deploy Pi Meter on Pi 5
```
docker run -d \
-v /sys/devices/system/cpu/cpu0/cpufreq:/pi_host/sys/devices/system/cpu/cpu0/cpufreq:ro \
-v /sys/class/thermal/thermal_zone0:/pi_host/sys/class/thermal/thermal_zone0:ro \
-v /sys/devices/platform:/pi_host/sys/devices/platform:ro \
-v /etc/os-release:/pi_host/etc/os-release:ro \
-v /proc/cpuinfo:/pi_host/proc/cpuinfo:ro \
-p 8004:8004 \
-p 8011:8011 \
--restart "unless-stopped" \
--name pi_meter \
sarthakpranesh/pi_meter
```