Complete all exam tasks

هذا الالتزام موجود في:
2026-07-27 19:57:44 -04:00
الأصل 176915001e
التزام 0c27e4dd24
6 ملفات معدلة مع 169 إضافات و0 حذوفات

16
q1-deploy-monitor/health-check.sh Normal file → Executable file
عرض الملف

@@ -0,0 +1,16 @@
#!/bin/bash
URL="http://localhost:8000/health"
while true
do
response=$(curl -s -o /dev/null -w "%{http_code}" $URL)
if [ "$response" -eq 200 ]; then
echo "$(date): Application is UP"
else
echo "$(date): Application is DOWN"
fi
sleep 30
done