icinga-powershell-framework/lib/icinga/plugin/Get-IcingaInternalPluginOutput.psm1

9 lines
250 B
PowerShell
Raw Normal View History

2021-08-06 12:12:27 -04:00
function Get-IcingaInternalPluginOutput()
{
if ([string]::IsNullOrEmpty($Global:Icinga.PluginExecution.PluginException) -eq $FALSE) {
return $Global:Icinga.PluginExecution.PluginException;
}
return $Global:Icinga.CheckResults;
}