using Umbraco.Cms.Core.Telemetry.Models; namespace Umbraco.Cms.Core.Telemetry; /// /// Service which gathers the data for telemetry reporting /// public interface ITelemetryService { /// /// Attempts to get the /// /// /// May return null if the site is in an unknown state. /// Task GetTelemetryReportDataAsync(); }