icinga-powershell-framework/lib/provider/memory/Get-IcingaMemoryPerformanceCounter.psm1
2019-07-25 18:29:21 +02:00

13 lines
433 B
PowerShell

function Get-IcingaMemoryPerformanceCounter()
{
$MemoryStart = (Show-IcingaPerformanceCounters -CounterCategory 'Memory').Keys;
$MemoryCounter = New-IcingaPerformanceCounterArray -Counter $MemoryStart;
[hashtable]$Result = @{};
foreach ($item in $MemoryCounter.Keys) {
$counter = $item.trimstart('\Memory\');
$Result.Add($counter, $MemoryCounter[$item]);
}
return $Result;
}