Server Monitoring (sleuren.com) is a web service that monitors and displays statistics of your server performance.
Agent is OS agnostic software compatible with Python 2.7, 3.5, and 3.6. It's been optimized to have low CPU consumption and comes with an extendable set of useful plugins.
You can find the full documentation at docs.sleuren.com.
You can install the default configuration of Sleuren on all Linux distributions with just one click.
-
Connect to your server via SSH.
-
Find your
TOKEN
. To do so, go to the project installation page. -
Run the following command:
wget -q -N https://sleuren.com/sleuren.sh && bash sleuren.sh TOKEN
To customize installation options, install sleuren agent manually.
-
Connect to your server via SSH.
-
Run the following command, which differs depending on your server platform:
-
Debian GNU/Linux:
apt-get install python3-devel python3-setuptools python3-pip pip3 install sleuren wget -O /etc/sleuren.ini https://sleuren.com/scripts/sleuren.ini
-
Fedora/CentOS version 6 or earlier (python 2.7):
yum install python-devel python-setuptools gcc easy_install sleuren netifaces psutil wget -O /etc/sleuren.ini https://sleuren.com/scripts/sleuren.ini
-
Fedora/CentOS version 7 and later (python 3):
yum install python36-devel python36 gcc pip3 install sleuren wget -O /etc/sleuren.ini https://sleuren.com/scripts/sleuren.ini
-
-
Find your
TOKEN
. To do so, go to the project installation page. -
Run the following command (TOKEN is the one you got during the previous step):
sleuren hello TOKEN /etc/sleuren-token.ini
-
Create a systemd service at
/etc/systemd/system/sleuren.service
by adding the following:[Unit] Description=Sleuren agent [Service] ExecStart=/usr/local/bin/sleuren User=sleuren [Install] WantedBy=multi-user.target
-
Run the following command:
chmod 644 /etc/systemd/system/sleuren.service systemctl daemon-reload systemctl enable sleuren systemctl start sleuren