Multi-Device Raspberry Pi Status MonitorVersion: 4.0.0
This project provides a centralized web dashboard for monitoring the system metrics of multiple Raspberry Pi (or other Debian-based) devices. It uses a client-server architecture where lightweight clients send data from each monitored device to a central server, which then displays the information in a real-time web interface.
(The new interface allows selecting between multiple devices and viewing detailed, collapsible metrics.)

systemd services for both server and client.The system is split into two main components:
First, clone the repository on both your server machine and all client machines.
git clone https://github.com/RecNes/stand-alone-RPi-status-monitoring-page.git
The server can be installed on any Debian-based Linux machine (including a Raspberry Pi).
# Navigate to the server directory
cd stand-alone-RPi-status-monitoring-page/server/
# Make the installation script executable
chmod +x install_server.sh
# Run the installation script (requires root privileges)
sudo ./install_server.sh
This script will:
/opt/rpi-monitor-server.systemd service named rpi-monitor-server.service.Install the client on each Raspberry Pi or device you want to monitor.
# Navigate to the client directory
cd stand-alone-RPi-status-monitoring-page/client/
# Make the installation script executable
chmod +x install_client.sh
# Run the installation script (requires root privileges)
sudo ./install_client.sh
The script will prompt you to enter the full URL of the server (e.g., http://192.168.1.100:5000). It will then:
/opt/rpi-monitor-client.systemd service named rpi-monitor-client.service.Once the server and at least one client are running, you can access the web dashboard by navigating to the server’s IP address and port in your browser.
Example: http://<your-server-ip>:5000/ (Note: The default server port is now 5000).
The page will load and display a dropdown menu containing all registered devices. Select a device to view its metrics.
You can manage the server and client applications using systemctl.
| Action | Command |
|---|---|
| Check Status | sudo systemctl status rpi-monitor-server.service |
| Restart | sudo systemctl restart r-monitor-server.service |
| Stop | sudo systemctl stop rpi-monitor-server.service |
| View Logs | sudo journalctl -u rpi-monitor-server.service -f |
| Action | Command |
|---|---|
| Check Status | sudo systemctl status rpi-monitor-client.service |
| Restart | sudo systemctl restart rpi-monitor-client.service |
| Stop | sudo systemctl stop rpi-monitor-client.service |
| View Logs | sudo journalctl -u rpi-monitor-client.service -f |