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

24 lines
861 B
PowerShell

<#
.SYNOPSIS
Function to fetch the last executed plugin performance data
from an internal memory cache in case the Framework is running as daemon.
.DESCRIPTION
While running the Framework as daemon, check results for plugins are not
printed into the console but written into an internal memory cache. Once
a plugin was executed, use this function to fetch the plugin performance data
.FUNCTIONALITY
Returns the last performance data output for executed plugins while the
Framework is running as daemon
.OUTPUTS
System.Object
.LINK
https://github.com/Icinga/icinga-powershell-framework
#>
function Get-IcingaCheckSchedulerPerfData()
{
$PerfData = $Global:Icinga.Private.Scheduler.PerformanceData;
$Global:Icinga.Private.Scheduler.PerformanceData = @();
return $PerfData;
}