Proxmox/misc/monitor-all.sh

143 lines
4.4 KiB
Bash
Raw Normal View History

2023-04-29 06:04:09 +02:00
#!/usr/bin/env bash
# Copyright (c) 2021-2023 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
clear
cat <<"EOF"
__ ___ _ __ ___ ____
/ |/ /___ ____ (_) /_____ _____ / | / / /
/ /|_/ / __ \/ __ \/ / __/ __ \/ ___/ / /| | / / /
/ / / / /_/ / / / / / /_/ /_/ / / / ___ |/ / /
/_/ /_/\____/_/ /_/_/\__/\____/_/ /_/ |_/_/_/
EOF
add() {
while true; do
read -p "This script will add Monitor All to Proxmox VE. Proceed(y/n)?" yn
case $yn in
[Yy]*) break ;;
[Nn]*) exit ;;
*) echo "Please answer yes or no." ;;
esac
done
echo '#!/usr/bin/env bash
# Read excluded instances from command line arguments
excluded_instances=("$@")
echo "Excluded instances: ${excluded_instances[@]}"
2023-04-30 10:48:05 +02:00
while true; do
2023-04-29 06:04:09 +02:00
2023-04-30 10:48:05 +02:00
for instance in $(pct list | awk '\''{if(NR>1) print $1}'\''; qm list | awk '\''{if(NR>1) print $1}'\''); do
2023-04-29 06:04:09 +02:00
# Skip excluded instances
if [[ " ${excluded_instances[@]} " =~ " ${instance} " ]]; then
continue
fi
# Determine the type of the instance (container or virtual machine)
if pct status $instance >/dev/null 2>&1; then
# It is a container
config_cmd="pct config"
IP=$(pct exec $instance ip a s dev eth0 | awk '\''/inet / {print $2}'\'' | cut -d/ -f1)
else
# It is a virtual machine
config_cmd="qm config"
IP=$(qm guest cmd $instance network-get-interfaces | egrep -o "([0-9]{1,3}\.){3}[0-9]{1,3}" | grep -E "192\.|10\." | head -n 1))
2023-04-29 06:04:09 +02:00
fi
# Skip instances based on templates
template=$($config_cmd $instance | grep template | grep -q "template:" && echo "true" || echo "false")
if [ "$template" == "true" ]; then
echo "Skipping $instance because it is a template"
continue
fi
# Ping the instance
if ! ping -c 1 $IP >/dev/null 2>&1; then
# If the instance can not be pinged, stop and start it
if pct status $instance >/dev/null 2>&1; then
# It is a container
echo "$(date): CT $instance is not responding, restarting..."
pct stop $instance >/dev/null 2>&1
sleep 5
pct start $instance >/dev/null 2>&1
else
# It is a virtual machine
if qm status $instance | grep -q "status: running"; then
echo "$(date): VM $instance is not responding, resetting..."
qm reset $instance >/dev/null 2>&1
else
qm start $instance >/dev/null 2>&1
echo "$(date): VM $instance is not running, starting..."
fi
fi
fi
done
# Wait for 5 minutes. (Edit to your needs)
echo "$(date): Pausing for 5 minutes..."
sleep 300
done >> /var/log/ping-instances.log 2>&1' >/usr/local/bin/ping-instances.sh
# Change file permissions to executable
chmod +x /usr/local/bin/ping-instances.sh
2023-04-30 10:22:09 +02:00
# Create ping-instances.service
2023-04-29 06:04:09 +02:00
echo '[Unit]
Description=Ping instances every 5 minutes and restarts if necessary
[Service]
Type=simple
# To specify which CT/VM should be excluded, add the CT/VM ID at the end of the line where ExecStart=/usr/local/bin/ping-instances.sh is specified.
# For example: ExecStart=/usr/local/bin/ping-instances.sh 100 102
# Virtual machines without the QEMU guest agent installed must be excluded.
2023-04-29 06:04:09 +02:00
ExecStart=/usr/local/bin/ping-instances.sh
Restart=always
StandardOutput=file:/var/log/ping-instances.log
StandardError=file:/var/log/ping-instances.log
[Install]
WantedBy=multi-user.target' >/etc/systemd/system/ping-instances.service
2023-04-30 10:22:09 +02:00
# Reload daemon, enable and start ping-instances.service
2023-04-29 06:04:09 +02:00
systemctl daemon-reload
systemctl enable -q --now ping-instances.service
clear
echo -e "\n To view Monitor All logs: cat /var/log/ping-instances.log"
}
remove() {
systemctl stop ping-instances.service
systemctl disable ping-instances.service &>/dev/null
rm /etc/systemd/system/ping-instances.service
rm /usr/local/bin/ping-instances.sh
rm /var/log/ping-instances.log
echo "Removed Monitor All from Proxmox VE"
}
2023-05-06 13:30:41 +02:00
# Define options for the whiptail menu
OPTIONS=(Add "Add Monitor-All to Proxmox VE" \
Remove "Remove Monitor-All from Proxmox VE")
# Show the whiptail menu and save the user's choice
CHOICE=$(whiptail --title "Monitor-All for Proxmox VE" --menu "Select an option:" 10 58 2 \
"${OPTIONS[@]}" 3>&1 1>&2 2>&3)
# Check the user's choice and perform the corresponding action
case $CHOICE in
"Add")
2023-04-29 06:04:09 +02:00
add
2023-05-06 13:30:41 +02:00
;;
"Remove")
2023-04-29 06:04:09 +02:00
remove
2023-05-06 13:30:41 +02:00
;;
*)
echo "Exiting..."
exit 0
;;
esac