2023-08-31 09:00:02 +00:00
|
|
|
import math
|
|
|
|
|
|
|
|
from pydantic import BaseModel, DirectoryPath, Field
|
2023-08-30 22:01:31 +00:00
|
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
|
|
|
2023-08-31 09:00:02 +00:00
|
|
|
class MetricSettings(BaseModel):
|
2023-08-30 22:01:31 +00:00
|
|
|
# metric will be reported
|
|
|
|
enabled: bool = True
|
|
|
|
|
2023-08-31 09:00:22 +00:00
|
|
|
# format string to report the metric
|
|
|
|
report: str = "{name}: {value:.2f}%"
|
|
|
|
|
2023-08-30 22:01:31 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2023-08-31 09:00:02 +00:00
|
|
|
class DiskMS(MetricSettings):
|
2023-08-31 11:02:54 +00:00
|
|
|
# outer format string for reporting
|
|
|
|
report_outer: str = "{name}: [{inner}]"
|
|
|
|
|
2023-08-31 09:00:02 +00:00
|
|
|
# paths to check for disk space
|
|
|
|
paths: list[DirectoryPath] = Field(default_factory=list)
|
2023-08-30 22:01:31 +00:00
|
|
|
|
2023-08-31 11:02:54 +00:00
|
|
|
# include only `count` many of the paths with the least free space
|
|
|
|
count: int = 1
|
|
|
|
|
2023-08-30 22:01:31 +00:00
|
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
|
|
model_config = SettingsConfigDict(
|
|
|
|
env_prefix="METRIC_",
|
|
|
|
env_nested_delimiter="__",
|
|
|
|
)
|
|
|
|
|
2023-08-31 09:00:02 +00:00
|
|
|
cpu: MetricSettings = MetricSettings(threshold=math.inf)
|
|
|
|
memory: MetricSettings = MetricSettings(threshold=90)
|
2023-08-31 09:45:10 +00:00
|
|
|
disk: DiskMS = DiskMS(threshold=15, inverted=True)
|
2023-08-30 22:01:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
SETTINGS = Settings()
|