initial commit

This commit is contained in:
Guillaume-Sanchez
2026-05-26 13:56:03 +02:00
parent 4c720637a1
commit ff4bb12d22
539 changed files with 12415 additions and 0 deletions
Binary file not shown.
Binary file not shown.
+2
View File
@@ -0,0 +1,2 @@
# RSX112 23 06 2025
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
# monitor-proxmox-groupe.sh
PROXMOX_HOST="ns3061298.ip-162-19-107.eu"
PROXMOX_USER="groupe[X]@pve"
GROUP_NUM="GSZ"
echo "=== Monitoring Groupe $GROUP_NUM ==="
echo "Time: $(date)"
echo ""
# Pour chaque conteneur
for i in 232 233 234; do
CT_ID="${i}"
echo "Container $CT_ID:"
# Status via API Proxmox (nécessite token API)
# ou via SSH direct
ssh pkilab@192.168.1.${i} "free -h | grep Mem" 2>/dev/null || echo " Unreachable"
echo ""
done