mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
11 lines
296 B
PowerShell
11 lines
296 B
PowerShell
function Show-IcingaRegisteredServiceChecks()
|
|
{
|
|
$Services = Get-IcingaRegisteredServiceChecks;
|
|
|
|
foreach ($service in $Services.Keys) {
|
|
Write-Host ([string]::Format('Service Id: {0}', $service));
|
|
Write-Host (
|
|
$Services[$service] | Out-String
|
|
);
|
|
}
|
|
}
|