Webサーバーの状態を確認したいです。 2分以内にhttp応答を受信したら、サーバーを再起動する必要があります。状態を確認するには、次のコマンドを使用しています。
curl -s -w "%{time_total}\n" -o /dev/null http://localhost:8080/demo1/employee/hello
ただし、無限ループを実行して応答を確認してください。
ベストアンサー1
以下のスクリプトはURLにかかる時間を確認し、2分以上の場合はif条件を入力します。そこに再起動コマンドを入れる必要があります。繰り返しごとに60秒間省電力モードに切り替える
#!/bin/bash
LOG_FILE=/tmp/log.txt
while true
do
echo "$(date) - Checking the URL is up or not" >> ${LOG_FILE}
TIME_TAKEN=$(curl -s -w "%{time_total}\n" -o /dev/null http://localhost:8080/demo1/employee/hello)
if [ "${TIME_TAKEN}" -gt "120" ]
then
echo "$(date) - Restart required. Time taken is ${TIME_TAKEN}" >> ${LOG_FILE}
# your restart command goes here
echo "$(date) - Successfully restarted" >> ${LOG_FILE}
fi
echo "$(date) - Sleep for 60 seconds" >> ${LOG_FILE}
sleep 60
done