icinga-powershell-framework/lib/icinga/plugin/Write-IcingaPluginOutput.psm1
2021-02-22 16:54:39 +01:00

13 lines
315 B
PowerShell

function Write-IcingaPluginOutput()
{
param(
$Output
);
if ($global:IcingaDaemonData.FrameworkRunningAsDaemon -eq $FALSE) {
Write-IcingaConsolePlain $Output;
} else {
# New behavior with local thread separated results
$global:Icinga.CheckResults += $Output;
}
}