import math from pydantic import BaseModel, DirectoryPath, Field from pydantic_settings import BaseSettings, SettingsConfigDict class MetricSettings(BaseModel): # metric name name: str # metric will be reported enabled: bool = True # format string to report the metric report: str = "{name}: {value:.2f}%" # if the metric value exceeds this percentage, the report fails threshold: float # if True, this metric fails when the value falls below the `threshold` inverted: bool = False class CpuMS(MetricSettings): name: str = "CPU" threshold: float = math.inf class MemoryMS(MetricSettings): name: str = "Memory" threshold: float = 90 class DiskMS(MetricSettings): name: str = "Disk Free" threshold: float = 15 inverted: bool = True # outer format string for reporting report_outer: str = "{name}: [{inner}]" # paths to check for disk space paths: list[DirectoryPath] = Field(default_factory=list) # include only `count` many of the paths with the least free space count: int = 1 class Settings(BaseSettings): model_config = SettingsConfigDict( env_prefix="METRIC_", env_nested_delimiter="__", ) cpu: CpuMS = CpuMS() memory: MemoryMS = MemoryMS() disk: DiskMS = DiskMS() SETTINGS = Settings()