mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
27 lines
704 B
PowerShell
27 lines
704 B
PowerShell
|
|
<#
|
||
|
|
.SYNOPSIS
|
||
|
|
Clears the entire check scheduler cache environment and frees memory as
|
||
|
|
well as cleaning the stack
|
||
|
|
.DESCRIPTION
|
||
|
|
Clears the entire check scheduler cache environment and frees memory as
|
||
|
|
well as cleaning the stack
|
||
|
|
.FUNCTIONALITY
|
||
|
|
Clears the entire check scheduler cache environment and frees memory as
|
||
|
|
well as cleaning the stack
|
||
|
|
.OUTPUTS
|
||
|
|
System.Object
|
||
|
|
.LINK
|
||
|
|
https://github.com/Icinga/icinga-powershell-framework
|
||
|
|
#>
|
||
|
|
|
||
|
|
function Clear-IcingaCheckSchedulerEnvironment()
|
||
|
|
{
|
||
|
|
if ($null -eq $global:Icinga) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
Get-IcingaCheckSchedulerPluginOutput | Out-Null;
|
||
|
|
Get-IcingaCheckSchedulerPerfData | Out-Null;
|
||
|
|
Clear-IcingaCheckSchedulerCheckData;
|
||
|
|
}
|