linux-dash is a drop-in, minimal-dependency web dashboard for linux servers. It provides a web interface for useful linux server information and statistics.
Linux-dash is not a network monitoring tool rather a tool to have a quick nice too, see performance stats real-time on a single system.
linux-dash support multiple Linux OS platforms and major browsers and can run on Node.js, PHP/Apache, Go and Python middleware platforms.
Currently supported widgets are
General info
Load Average
RAM
Disk Usage
Users
Software
IP
Internet Speed
Online
Processes
Logs
How to install
As Node.js is the recommended middleware platform, lets build and run linux-dash on CentOS with Node.js
Install Node.js
For steps to install Node.js, please click here
Install linux-dash
1. Download latest version from github
Download the latest version of linux-dash from github and copy over to the directory where you want the application to run and unzip
[root@rhel7master nodejs]# wget https://github.com/afaqurk/linux-dash/archive/master.zip
[root@rhel7master nodejs]# unzip
2. Change directory to the unzipped directory and install
[root@rhel7master linux-dash-master]# npm install
By default, linux-dash listens on port 80, if you need to listen on an alternate port, edit server/index.js file and update the line “server.listen(80)” to in my case server.listen(8080) to make it listen on port 8080
3. Allow through firewall (if running)
If you have firewall running on your system, either allow the port or disable firewall. In my case, I let port 8080 through the firewall
[root@rhel7master linux-dash-master]# firewall-cmd --permanent --add-port=80/tcp
4. Start linux-dash
[root@rhel7master linux-dash-master]# node server/ Linux Dash Server Started!
Access linux-dash at http://<ip/hostname>: (here http://192.168.1.25:8080)
Here are a few screenshots: