mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
45 lines
946 B
PowerShell
Executable File
45 lines
946 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
check-health.ps1
|
|
.DESCRIPTION
|
|
Checks the health of the local computer
|
|
.EXAMPLE
|
|
PS> .\check-health.ps1
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
$Hostname = $(hostname)
|
|
$Healthy = 1
|
|
"Checking health of $Hostname ..."
|
|
|
|
& "$PSScriptRoot/check-swap-space.ps1"
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
|
|
if ($IsLinux) {
|
|
& "$PSScriptRoot/check-drive-space.ps1" /
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
} else {
|
|
& "$PSScriptRoot/check-drive-space.ps1" C
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
}
|
|
|
|
& "$PSScriptRoot/check-cpu-temp.ps1"
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
|
|
& "$PSScriptRoot/check-dns-resolution.ps1"
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
|
|
& "$PSScriptRoot/check-ping.ps1"
|
|
if ($lastExitCode -ne "0") { $Healthy = 0 }
|
|
|
|
if ($Healthy) {
|
|
"✔️ $Hostname is healthy"
|
|
exit 0
|
|
} else {
|
|
write-warning "$Hostname is NOT healthy"
|
|
exit 1
|
|
}
|