mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
47 lines
1.5 KiB
PowerShell
47 lines
1.5 KiB
PowerShell
function New-IcingaCheckResult()
|
|
{
|
|
param (
|
|
$Check,
|
|
[bool]$NoPerfData = $FALSE,
|
|
[switch]$Compile = $FALSE
|
|
);
|
|
|
|
$IcingaCheckResult = New-Object -TypeName PSObject;
|
|
$IcingaCheckResult | Add-Member -MemberType NoteProperty -Name 'Check' -Value $Check;
|
|
$IcingaCheckResult | Add-Member -MemberType NoteProperty -Name 'NoPerfData' -Value $NoPerfData;
|
|
|
|
$IcingaCheckResult | Add-Member -MemberType ScriptMethod -Name 'Compile' -Value {
|
|
if ($null -eq $this.Check) {
|
|
return $IcingaEnums.IcingaExitCode.Unknown;
|
|
}
|
|
|
|
# Compile the check / package if not already done
|
|
$this.Check.Compile();
|
|
|
|
Write-IcingaPluginOutput -Output ($this.Check.__GetCheckOutput());
|
|
|
|
if ($this.NoPerfData -eq $FALSE) {
|
|
Write-IcingaPluginPerfData -IcingaCheck $this.Check;
|
|
}
|
|
|
|
# Ensure we reset our internal cache once the plugin was executed
|
|
$CheckCommand = $this.Check.__GetCheckCommand();
|
|
if ([string]::IsNullOrEmpty($CheckCommand) -eq $FALSE -And $Global:Icinga.Private.Scheduler.ThresholdCache.ContainsKey($CheckCommand)) {
|
|
$Global:Icinga.Private.Scheduler.ThresholdCache[$CheckCommand] = $null;
|
|
}
|
|
# Reset the current execution date
|
|
$Global:Icinga.CurrentDate = $null;
|
|
|
|
$ExitCode = $this.Check.__GetCheckState();
|
|
|
|
Set-IcingaInternalPluginExitCode -ExitCode $ExitCode;
|
|
|
|
return $ExitCode;
|
|
}
|
|
|
|
if ($Compile) {
|
|
return $IcingaCheckResult.Compile();
|
|
}
|
|
|
|
return $IcingaCheckResult;
|
|
}
|