7 lines
359 B
Bash
Executable File
7 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
LOG_FILE="/var/log/wevads_learning.log"
|
|
echo "[$(date)] Système WEVADS - Journal d'apprentissage" > $LOG_FILE
|
|
echo "[$(date)] Pattern détecté: Processus zombies PostgreSQL" >> $LOG_FILE
|
|
echo "[$(date)] Solution apprise: timeout + kill automatique" >> $LOG_FILE
|
|
echo "[$(date)] Prochaine prévention: surveillance cron améliorée" >> $LOG_FILE
|