PowerShell/Scripts/check-swap-space.ps1

40 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-04-16 18:46:03 +02:00
#!/usr/bin/pwsh
2021-03-15 16:41:26 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX check-swap-space.ps1 [<min-level>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION checks the free swap space
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-03-15 16:41:26 +01:00
#>
param([int]$MinLevel = 50) # minimum level in GB
2021-03-15 16:41:26 +01:00
try {
2021-03-20 15:15:57 +01:00
if ($IsLinux) {
$Result = $(free --mega | grep Swap:)
[int]$Total = $Result.subString(5,14)
[int]$Used = $Result.substring(20,13)
[int]$Free = $Result.substring(31,12)
} else {
$Items = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost
foreach ($Item in $Items) {
[int]$Total = $Item.AllocatedBaseSize
[int]$Used = $Item.CurrentUsage
[int]$Free = ($Total - $Used)
}
}
2021-03-30 08:23:51 +02:00
if ($Total -eq "0") {
write-warning "No swap space configured!"
exit 1
}
2021-03-20 15:15:57 +01:00
if ($Free -lt $MinLevel) {
write-warning "Swap space has only $Free GB left to use! ($Used GB out of $Total GB in use, minimum is $MinLevel GB)"
exit 1
}
2021-04-17 18:54:45 +02:00
"✔️ $Free GB left on swap space ($Used GB of $Total GB used)"
2021-03-15 16:41:26 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}