See your server resourses on simple web UI
Simple Docker Compose service looks like this
simple-system-monitor:
image: ghcr.io/mishankov/simple-system-monitor:latest
container_name: simple-system-monitor
ports:
- 4442:4442
environment:
- SSM_PATH="/hostfs/proc"
volumes:
- /:/hostfs:ro
- ./user-assets/:/app/user-assets # mount user assets to container
restart: 'unless-stopped'
Download latest simple-system-monitor binary from latest GitHub release, unzip it and run
wget http://github.com/mishankov/simple-system-monitor/releases/latest/download/simple-server-monitor.zip
unzip simple-server-monitor.zip
./simple-server-monitor
Configuration of simple-system-monitor is done with environment variables. Available env vars:
SSM_PERIOD - period for updating all monitoring in seconds. Default is 2SSM_PATH - path to take system information from. Default is /procSSM_PORT - port to run web server. Default is 4442SSM_CPUINFO_PERIOD - period for updating CPU monitoring in seconds. Default is SSM_PERIOD valueSSM_CPUINFO_PATH - path to take CPU information from. Default is SSM_PATH value + /statSSM_MEMINFO_PERIOD - period for updating RAM monitoring in seconds. Default is SSM_PERIOD valueSSM_MEMINFO_PATH - path to take RAM information from. Default is SSM_PATH value + /meminfoSSM_UPTIME_PERIOD - period for updating uptime monitoring in seconds. Default is SSM_PERIOD valueSSM_UPTIME_PATH - path to take uptime information from. Default is SSM_PATH value + /uptimeSSM_USER_ASSETS_PATH - path to user defined assets like custom CSS. Default is ./user-assets/ - page with all available metrics/metrics/cpuinfo, /metrics/meminfo, /metrics/uptime - dedicated pages for every type of monitoring. Can be used by including in other pages via iframeTheming available by supplying custom CSS file user.css at SSM_USER_ASSETS_PATH. A few CSS variables are available. See full list here.
See premade themes here