2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
check-swap-space.ps1 [<min-level>]
|
|
|
|
|
.DESCRIPTION
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Checks the free swap space
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./check-swap-space
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
2021-08-29 17:50:03 +02:00
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-03-15 16:41:26 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-03-15 16:58:14 +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) {
|
2021-09-11 11:19:22 +02:00
|
|
|
|
write-warning "Swap space has only $Free GB left to use! ($Used of $Total GB used, minimum is $MinLevel GB)"
|
2021-03-15 16:58:14 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|
2021-09-11 11:19:22 +02:00
|
|
|
|
"✔️ $Free GB left on swap space ($Used of $Total GB used)"
|
2021-03-15 16:41:26 +01:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-03-15 16:41:26 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|