带 nrpe 的 powershell 参数

powershell arguments with nrpe

我想通过 powershell 脚本传递两个参数。

这是定期检查

test = cmd /c echo scripts\test.ps1 ;退出($lastexitcode) | powershell.exe-命令-

这就是我想要的想法。设置警告和严重。

test = cmd /c echo scripts\test.ps1 -w 10 -c 50 ;退出($lastexitcode) | powershell.exe-命令-

如果警告设置为超过 10 则它将 return 退出 1

如果临界值设置超过 50,那么它将 return 退出 2

不确定如何在我的脚本中执行此操作。

这是现在的样子。

$condition = (Get-Service | Where-Object Status -eq "Running").Count

if ($argument warn) {
    Write-Output "Warning:" $condition
    exit 1 
}

ElseIf ($argument critical) {
        Write-Output "Critical:" $condition
        exit 2
}

可以使用,

powershell -file "(Path to your PowerShell Script).ps1 -w10 -c50"

在顶部的 PowerShell 脚本中,插入以下内容:

param ($w, $c)

然后在脚本中使用变量。

了解有关命名参数的更多信息,这样您就不必按参数的使用顺序输入参数,并且在您想要进行更改时脚本中断的可能性较小。

虽然我不太确定这是否是您的意思,但您可以使用 param() 块启动脚本,以便它接受像 [=11= 这样的参数]

param (
    [int]$WarningLevel = 0,
    [int]$CriticalLevel = 0
)

$condition = (Get-Service | Where-Object {$_.Status -eq "Running"}).Count

if ($CriticalLevel -gt 0 -and $condition -gt $CriticalLevel) {
    Write-Output "Critical: Way too many proc's: $condition"
    Exit 2
}
elseif ($WarningLevel -gt 0 -and  $condition -gt $WarningLevel) {
    Write-Output "Warning: proc's filling up: $condition"
    Exit 1 
}
Write-Output "All OK"
Exit 0