PowerShell/Scripts/check-health.ps1

46 lines
947 B
PowerShell
Raw Normal View History

2021-09-27 10:09:45 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
check-health.ps1
.DESCRIPTION
Checks the health of the local computer
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./check-health
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-03-20 15:51:03 +01:00
#>
2021-03-20 16:32:26 +01:00
$Hostname = $(hostname)
$Healthy = 1
2021-09-21 21:06:10 +02:00
"Checking $Hostname's health..."
2021-03-20 15:51:03 +01:00
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-swap-space.ps1"
2021-03-20 16:32:26 +01:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
2021-03-20 15:51:03 +01:00
2021-03-20 16:32:26 +01:00
if ($IsLinux) {
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-drive-space.ps1" /
2021-03-20 16:32:26 +01:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
} else {
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-drive-space.ps1" C
2021-03-20 16:32:26 +01:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
}
2021-03-20 16:13:54 +01:00
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-cpu-temp.ps1"
2021-03-20 16:32:26 +01:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
2021-03-20 15:51:03 +01:00
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-dns-resolution.ps1"
2021-03-20 16:32:26 +01:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
2021-03-20 15:51:03 +01:00
2021-04-07 14:45:10 +02:00
& "$PSScriptRoot/check-ping.ps1"
2021-03-30 09:06:30 +02:00
if ($lastExitCode -ne "0") { $Healthy = 0 }
2021-03-20 16:32:26 +01:00
if ($Healthy) {
2021-04-17 18:54:45 +02:00
"✔️ $Hostname is healthy"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-03-20 16:32:26 +01:00
} else {
write-warning "$Hostname is NOT healthy"
2021-03-20 15:51:03 +01:00
exit 1
}