Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sarthakpranesh/pi_meter
- Owner: sarthakpranesh
- License: mit
- Created: 2024-03-24T11:07:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-28T07:26:06.000Z (3 months ago)
- Last Synced: 2024-10-12T10:19:02.469Z (3 months ago)
- Topics: bun, docker, monitoring, raspberry-pi, raspberry-pi-5, react, reactjs
- Language: TypeScript
- Homepage:
- Size: 81.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```