The service name is not currently being displayed on the web console, but you can get it by creating a report. The following report lists details about services.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.Lastseen,
tblServicesUni.Caption As Service,
tblServicesUni.Name,
tblServicesUni.Startname,
tblServices.Started,
tblServiceStartMode.StartMode,
tblServicesUni.Pathname
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblServices On tblAssets.AssetID = tblServices.AssetID
Inner Join tblServicesUni On tblServicesUni.ServiceuniqueID =
tblServices.ServiceuniqueID
Left Join tblServiceStartMode On tblServiceStartMode.StartID =
tblServices.StartID And tblServiceStartMode.StartID = tblServices.StartID
Where tblAssetCustom.State = 1
Order By tblAssets.AssetName,
Service
We might add the service name to the web console later.