2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-12-01 10:49:10 +01:00
|
|
|
|
Checks the swap space
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script checks the free swap space.
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER MinLevel
|
|
|
|
|
Specifies the minimum level (50 GB by default)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./check-swap-space
|
2021-10-04 17:42:06 +02:00
|
|
|
|
✔️ 1213 GB left for swap space (67 of 1280 GB used)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
2022-01-29 12:47:46 +01: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") {
|
2021-12-01 10:49:10 +01:00
|
|
|
|
$Reply = "No swap space configured!"
|
|
|
|
|
} elseif ($Free -lt $MinLevel) {
|
|
|
|
|
$Reply = "Swap space has only $Free GB left to use! ($Used of $Total GB used, minimum is $MinLevel GB)"
|
|
|
|
|
} else {
|
|
|
|
|
$Reply = "Swap space has $Free GB left ($Total GB total)"
|
2021-03-15 16:58:14 +01:00
|
|
|
|
}
|
2021-12-06 17:00:49 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-03-15 16:41:26 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-03-15 16:41:26 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|