Add Dovecot exporter
This commit is contained in:
BIN
exporter/dovecot_exporter/dovecot_exporter
Normal file
BIN
exporter/dovecot_exporter/dovecot_exporter
Normal file
Binary file not shown.
12
exporter/dovecot_exporter/dovecot_exporter.service
Normal file
12
exporter/dovecot_exporter/dovecot_exporter.service
Normal file
@ -0,0 +1,12 @@
|
||||
[Unit]
|
||||
Description=Dovecot Exporter
|
||||
|
||||
[Service]
|
||||
User=root
|
||||
ExecStart=/usr/prometheus/dovecot_exporter
|
||||
ProtectHome=true
|
||||
ProtectSystem=full
|
||||
ReadWritePaths=/var/run/dovecot/stats
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
30
exporter/dovecot_exporter/install.sh
Normal file
30
exporter/dovecot_exporter/install.sh
Normal file
@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "$EUID" -ne 0 ]
|
||||
then echo "Please run as root"
|
||||
exit
|
||||
fi
|
||||
|
||||
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
||||
|
||||
if service --status-all | grep -Fq 'dovecot_exporter'; then
|
||||
service dovecot_exporter stop
|
||||
fi
|
||||
|
||||
echo "Copying exporter"
|
||||
|
||||
mkdir -p /usr/prometheus
|
||||
|
||||
echo "Checking/Creating systemd configuration"
|
||||
|
||||
cp $SCRIPTPATH/dovecot_exporter /usr/prometheus/dovecot_exporter
|
||||
chmod +x /usr/prometheus/dovecot_exporter
|
||||
|
||||
cp $SCRIPTPATH/dovecot_exporter.service /etc/systemd/system/
|
||||
|
||||
echo "Starting exporter"
|
||||
|
||||
systemctl enable dovecot_exporter.service
|
||||
service dovecot_exporter start
|
||||
|
||||
echo "Exporter available at :9166"
|
Reference in New Issue
Block a user