icinga-powershell-framework/lib/core/thread/Test-IcingaThread.psm1
2019-10-05 21:59:03 +02:00

12 lines
222 B
PowerShell

function Test-IcingaThread()
{
param(
[string]$Thread
);
if ([string]::IsNullOrEmpty($Thread)) {
return $FALSE;
}
return $global:IcingaDaemonData.IcingaThreads.ContainsKey($Thread);
}