OP5 plugin example in powershell
If you want to monitor your windows server uptime in OP5. Run from NSClient++ on all hosts you want to monitor uptime on.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
param
(
[parameter(Mandatory = $true)]
[int]$w,
[parameter(Mandatory = $true)]
[int]$c
)
function Get-Uptime
{
$os = Get-WmiObject win32_operatingsystem
$uptime = (Get-Date) - ($os.ConvertToDateTime($os.lastbootuptime))
return $Uptime
}
$os = Get-CimInstance Win32_OperatingSystem | Select-Object Caption | ForEach{ $_.Caption }
$uptime = Get-Uptime
if ( $uptime.Days -gt $c)
{
Write-Host Write-Host "CRITICAL Uptime:" $Uptime.Days "days"
exit 2
}
if ($uptime.Days -gt $w)
{
Write-Host Write-Host "WARNING Uptime:" $Uptime.Days "days"
exit 1
}
if ($uptime.Days -lt $w)
{
Write-Host "OK" $Uptime.Days "days uptime"
Write-Host "OS: $os"
exit 0
}
This post is licensed under CC BY 4.0 by the author.