icinga-powershell-framework/lib/core/framework/Get-IcingaCheckSchedulerCheckData.psm1

21 lines
556 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
Fetch the raw output values for a check command for each single object
processed by New-IcingaCheck
.DESCRIPTION
Fetch the raw output values for a check command for each single object
processed by New-IcingaCheck
.FUNCTIONALITY
Fetch the raw output values for a check command for each single object
processed by New-IcingaCheck
.OUTPUTS
System.Object
.LINK
https://github.com/Icinga/icinga-powershell-framework
#>
function Get-IcingaCheckSchedulerCheckData()
{
2021-12-09 11:42:06 -05:00
return $global:Icinga.Private.Scheduler.CheckData;
}