icinga-powershell-framework/lib/icinga/plugin/Get-IcingaThresholdCache.psm1
2022-01-25 10:00:19 +01:00

16 lines
378 B
PowerShell

function Get-IcingaThresholdCache()
{
param (
[string]$CheckCommand = $null
);
if ([string]::IsNullOrEmpty($CheckCommand)) {
return $null;
}
if ($Global:Icinga.Private.Scheduler.ThresholdCache.ContainsKey($CheckCommand) -eq $FALSE) {
return $null;
}
return $Global:Icinga.Private.Scheduler.ThresholdCache[$CheckCommand];
}