namespace Cleanuparr.Infrastructure.Stats;
///
/// Current health of configured integrations. This is a cached gauge refreshed by a background service
/// (roughly every 5 minutes), not a timeframe-scoped metric; it ignores the requested timeframe.
///
public class HealthStats
{
///
/// Health of each enabled download client.
///
public List DownloadClients { get; set; } = [];
///
/// Health of each enabled arr instance (Sonarr, Radarr, Lidarr, Readarr, Whisparr).
///
public List ArrInstances { get; set; } = [];
}