public IActionResult GetServiceIdentifiers() { var services = _healthCheckState.GetServiceIdentifiers(); return(Ok(new { Services = services.Select(x => x.Identifier) })); }
/// <inheritdoc/> public IEnumerable <Service> GetServiceIdentifiers() => _healthCheckState.GetServiceIdentifiers();