Simple material design system monitor Vue 2 application, using Vuetify.js components and PilotSysModBackend API
Currently tested with backend running on Linux machines only! In theory, it should work on Windows and macOS, but some features may be broken.
- System overall
- CPU (load and frequency charts, detailed info only on Linux)
- Storage devices (mountpoints, options and filled space)
- System memory (RAM and swap load charts)
- Network stats (real-time bandwidth measuring, network interfaces info)
- Log viewer (works only on Linux with systemd!)
- Install npm on your Linux distribution
- Clone this repo:
git clone https://github.com/SanyaPilot/PilotSysMon
- Install backend referring to it's installation instruction
- Cd into the previously cloned project repo
Executenpm install
to install all required dependencies - Adjust URL to backend API by editing src/API/common.js.
Just replace string"http://localhost:8000"
with anything you want
Just hit npm run serve
and all is set! This will execute development server at localhost:8080
To create production-optimized build without any useless debugging to deploy on your preferred HTTP server (Nginx or Apache for example), execute
npm run build
Ready production build files will be placed into the dist directory at the project root