add check_uptime

This commit is contained in:
Cyberes 2023-06-02 17:52:30 -06:00
parent f820bbf131
commit eb4e6f690e
1 changed files with 26 additions and 0 deletions

26
check_uptime.sh Executable file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# Get the uptime start time
UPTIME_OUTPUT=$(uptime -s)
UPTIME_EXIT_CODE=$?
# Check if the uptime command was successful
if [ $UPTIME_EXIT_CODE -ne 0 ]; then
echo "UNKNOWN - Unable to get uptime"
exit 3
fi
# Calculate the uptime in seconds
UPTIME_START=$(date -u -d "$UPTIME_OUTPUT" +%s)
CURRENT_TIME=$(date -u +%s)
UPTIME_SECONDS=$((CURRENT_TIME - UPTIME_START))
# Convert the uptime seconds to hours
UPTIME_HOURS=$(echo "scale=2; $UPTIME_SECONDS / 3600" | bc)
# Get the human-readable uptime
UPTIME_HUMAN=$(uptime -p)
# Print the result and performance data
echo "OK - Uptime: $UPTIME_HUMAN | uptime_hours=$UPTIME_HOURS"
exit 0