Installation
Installing the monitoring script is simple and takes less than 1 minute:
- Log in to your Scalelite Manager Pro account
- Navigate to Monitoring → Setup
- Copy your unique installation command
- SSH into your Scalelite server
- Run the installation command as root
Installation Command
The installation command looks like this:
curl -sSL https://scalelitemanager.com/scalelite/install-monitoring | sudo bash -s -- YOUR_TOKEN YOUR_INSTANCE_ID
Important: Never share your installation token with anyone!
What Gets Installed
The installer will:
- Download the monitoring script to
/usr/local/bin/ - Create a systemd timer (cron job) to run every 5 minutes
- Configure logging to
/var/log/scalelite-monitoring-webhook.log - Send your first health report within 5 minutes
Verifying Installation
To verify the monitoring script is running:
sudo systemctl status scalelite-monitoring.timer
sudo tail -f /var/log/scalelite-monitoring-webhook.log
You should see "Successfully sent webhook" messages in the logs.
Troubleshooting
If you don't see data after 10 minutes:
- Check that the timer is active:
systemctl is-active scalelite-monitoring.timer - Review logs for errors:
tail -50 /var/log/scalelite-monitoring-webhook.log - Ensure your server can reach scalelitemanager.com (port 443)