PowerShell/Docs/check-swap-space.md

109 lines
3.0 KiB
Markdown
Raw Normal View History

2023-07-29 10:34:04 +02:00
*check-swap-space.ps1*
================
2021-11-08 21:36:42 +01:00
2023-10-19 08:12:00 +02:00
This PowerShell script queries the current status of the swap space and prints it.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2023-09-01 17:53:03 +02:00
PS> ./check-swap-space.ps1 [[-minLevel] <Int32>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2023-09-01 17:53:03 +02:00
-minLevel <Int32>
Specifies the minimum level in GB (10 GB by default)
2021-11-08 21:36:42 +01:00
Required? false
Position? 1
2022-11-17 19:46:02 +01:00
Default value 10
2021-11-08 21:36:42 +01:00
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
2023-08-06 11:42:46 +02:00
PS> ./check-swap-space.ps1
2023-10-19 08:12:00 +02:00
✅ Swap space uses 42%, 748MB free of 1GB
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
2023-10-19 08:12:00 +02:00
Checks the swap space
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2023-10-19 08:12:00 +02:00
This PowerShell script queries the current status of the swap space and prints it.
2023-09-01 17:53:03 +02:00
.PARAMETER minLevel
Specifies the minimum level in GB (10 GB by default)
2022-11-17 20:02:26 +01:00
.EXAMPLE
2023-08-06 11:42:46 +02:00
PS> ./check-swap-space.ps1
2023-10-19 08:12:00 +02:00
✅ Swap space uses 42%, 748MB free of 1GB
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-09-01 17:53:03 +02:00
param([int]$minLevel = 10)
2022-11-17 20:02:26 +01:00
function MB2String { param([int64]$Bytes)
if ($Bytes -lt 1000) { return "$($Bytes)MB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)GB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)TB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)PB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)EB" }
}
try {
2023-09-01 17:53:03 +02:00
[int64]$Total = [int64]$Used = [int64]$Free = 0
2022-11-17 20:02:26 +01:00
if ($IsLinux) {
$Result = $(free --mega | grep Swap:)
2023-09-01 17:53:03 +02:00
[int64]$Total = $Result.subString(5,14)
[int64]$Used = $Result.substring(20,13)
[int64]$Free = $Result.substring(32,11)
2022-11-17 20:02:26 +01:00
} else {
$Items = Get-WmiObject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost
foreach ($Item in $Items) {
2023-09-01 17:53:03 +02:00
$Total += $Item.AllocatedBaseSize
$Used += $Item.CurrentUsage
$Free += ($Total - $Used)
2022-11-17 20:02:26 +01:00
}
}
if ($Total -eq 0) {
2023-08-06 11:42:46 +02:00
Write-Output "⚠️ No swap space configured"
2023-05-26 12:20:18 +02:00
} elseif ($Free -eq 0) {
2023-09-01 17:53:03 +02:00
Write-Output "⚠️ Swap space of $(MB2String $Total) is full"
} elseif ($Free -lt $minLevel) {
Write-Output "⚠️ Swap space of $(MB2String $Total) is nearly full, only $(MB2String $Free) free"
2022-11-17 20:02:26 +01:00
} elseif ($Used -eq 0) {
2023-09-01 17:53:03 +02:00
Write-Output "✅ Swap space of $(MB2String $Total) reserved"
2022-11-17 20:02:26 +01:00
} else {
2023-08-06 11:42:46 +02:00
[int]$Percent = ($Used * 100) / $Total
2023-10-19 08:12:00 +02:00
Write-Output "✅ Swap space uses $Percent%, $(MB2String $Free) free of $(MB2String $Total)"
2022-11-17 20:02:26 +01:00
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2023-10-19 08:12:00 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1 as of 10/19/2023 08:11:36)*