Sha256: f776d6a89dba95bca7b038f6d5291b507754fe3e3f85cdaaac13979d30692369

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

#
#   check-windows-processor-queue-length.ps1
#
# DESCRIPTION:
#   This plugin collects the Processor Queue Length and compares against the WARNING and CRITICAL thresholds.
#
# OUTPUT:
#   plain text
#
# PLATFORMS:
#   Windows
#
# DEPENDENCIES:
#   Powershell
#
# USAGE:
#   Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-processor-queue-length.ps1 5 10
#
# NOTES:
#
# LICENSE:
#   Copyright 2016 sensu-plugins
#   Released under the same terms as Sensu (the MIT license); see LICENSE for details.
#
[CmdletBinding()]
Param(
  [Parameter(Mandatory=$True,Position=1)]
   [int]$WARNING,

   [Parameter(Mandatory=$True,Position=2)]
   [int]$CRITICAL
)

$ThisProcess = Get-Process -Id $pid
$ThisProcess.PriorityClass = "BelowNormal"

$Value = (Get-WmiObject Win32_PerfFormattedData_PerfOS_System).ProcessorQueueLength

If ($Value -gt $CRITICAL) {
  Write-Host CheckWindowsProcessorQueueLength CRITICAL: Processor Queue at $Value.
  Exit 2 }

If ($Value -gt $WARNING) {
  Write-Host CheckWindowsProcessorQueueLength WARNING: Processor Queue at $Value.
  Exit 1 }

Else {
  Write-Host CheckWindowsProcessorQueueLength OK: Processor Queue at $Value.
  Exit 0 }

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sensu-plugins-windows-1.0.0 bin/powershell/check-windows-processor-queue-length.ps1
sensu-plugins-windows-0.1.0 bin/powershell/check-windows-processor-queue-length.ps1