icinga-powershell-framework/lib/provider/services/Get-IcingaServiceCheckName.psm1

21 lines
404 B
PowerShell
Raw Normal View History

function Get-IcingaServiceCheckName()
{
param (
[string]$ServiceInput,
$Service
);
if ($null -eq $Service) {
return [string]::Format(
'Service "{0}"',
$ServiceInput
);
}
return [string]::Format(
'Service "{0} ({1})"',
$Service.Values.metadata.DisplayName,
$Service.Values.metadata.ServiceName
);
}