PowerShell/Scripts/check-health.ps1

40 lines
974 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-03-20 15:51:03 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX check-health.ps1
.DESCRIPTION checks the health of the local computer
2021-03-22 20:10:18 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES 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
"Checking health of $Hostname ..."
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-03-20 15:51:03 +01:00
write-host -foregroundColor green "OK - $Hostname is healthy"
exit 0
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
}