2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
check-health.ps1
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
Checks the health of the local computer
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> .\check-health.ps1
|
|
|
|
|
.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
|
|
|
|
|
"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-04-17 18:54:45 +02:00
|
|
|
|
"✔️ $Hostname is healthy"
|
2021-03-20 15:51:03 +01:00
|
|
|
|
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
|
|
|
|
|
}
|