2023-08-31 09:00:02 +00:00
|
|
|
import math
|
2023-08-31 22:11:10 +00:00
|
|
|
from typing import Any, Literal
|
2023-08-31 09:00:02 +00:00
|
|
|
|
2023-08-31 22:11:10 +00:00
|
|
|
from pydantic import (BaseModel, DirectoryPath, Field, FieldValidationInfo,
|
|
|
|
field_validator)
|
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-31 11:09:19 +00:00
|
|
|
# metric name
|
|
|
|
name: str
|
|
|
|
|
2023-08-30 22:01:31 +00:00
|
|
|
# metric will be reported
|
|
|
|
enabled: bool = True
|
|
|
|
|
|
|
|
# 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 15:23:00 +00:00
|
|
|
# per-value format string for reporting
|
|
|
|
report: str = "{name}: {value:.2f}%"
|
|
|
|
|
|
|
|
# per-metric format string for reporting
|
2023-08-31 15:31:25 +00:00
|
|
|
report_outer: str = "{inner}"
|
2023-08-31 15:23:00 +00:00
|
|
|
|
|
|
|
# include only `count` many items (None: include all)
|
|
|
|
count: int | None = None
|
|
|
|
|
2023-08-31 22:11:10 +00:00
|
|
|
@field_validator("count", mode="before")
|
|
|
|
@classmethod
|
|
|
|
def parse_nonetype(
|
|
|
|
cls,
|
|
|
|
value: Any,
|
|
|
|
info: FieldValidationInfo,
|
|
|
|
) -> int | None:
|
|
|
|
try:
|
|
|
|
return int(value)
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
if str(value).lower().strip() not in (
|
|
|
|
"none", "null", "all", "yes", "any", "full",
|
|
|
|
"oddly_specific_value_42",
|
|
|
|
):
|
|
|
|
print(
|
|
|
|
f"[WARN] Unexpected {value=!r} for {info.field_name}, "
|
|
|
|
"falling back to None."
|
|
|
|
)
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2023-08-30 22:01:31 +00:00
|
|
|
|
2023-08-31 11:09:19 +00:00
|
|
|
class CpuMS(MetricSettings):
|
|
|
|
name: str = "CPU"
|
|
|
|
threshold: float = math.inf
|
|
|
|
|
|
|
|
|
2023-08-31 15:23:00 +00:00
|
|
|
class MemoryMS(MetricSettings):
|
2023-08-31 11:09:19 +00:00
|
|
|
name: str = "Memory"
|
|
|
|
threshold: float = 90
|
2023-08-31 12:26:50 +00:00
|
|
|
|
|
|
|
# how to handle swap space
|
|
|
|
# exclude: swap space is not reported
|
|
|
|
# include: swap space is reported separately
|
|
|
|
# combine: ram and swap are combined
|
|
|
|
swap: Literal["exclude", "include", "combine"] = "include"
|
|
|
|
|
|
|
|
# names for telling apart ram and swap space
|
|
|
|
name_ram: str = "RAM"
|
|
|
|
name_swap: str = "Swap"
|
2023-08-31 11:09:19 +00:00
|
|
|
|
|
|
|
|
2023-08-31 15:23:00 +00:00
|
|
|
class DiskMS(MetricSettings):
|
2023-08-31 11:44:41 +00:00
|
|
|
name: str = "Disk Used"
|
|
|
|
threshold: float = 85
|
2023-08-31 22:11:10 +00:00
|
|
|
report: str = "{value:.2f}% ({name})"
|
|
|
|
report_outer: str = "{name}: {inner}"
|
2023-08-31 15:38:15 +00:00
|
|
|
count: int | None = 1
|
2023-08-31 11:02:54 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
|
|
model_config = SettingsConfigDict(
|
2023-08-31 22:25:18 +00:00
|
|
|
env_prefix="METRIC__",
|
2023-08-30 22:01:31 +00:00
|
|
|
env_nested_delimiter="__",
|
|
|
|
)
|
|
|
|
|
2023-08-31 22:25:18 +00:00
|
|
|
# separates metrics and values in reports
|
|
|
|
separator: str = ", "
|
|
|
|
|
|
|
|
# metrics settings
|
2023-08-31 11:09:19 +00:00
|
|
|
cpu: CpuMS = CpuMS()
|
|
|
|
memory: MemoryMS = MemoryMS()
|
|
|
|
disk: DiskMS = DiskMS()
|
2023-08-30 22:01:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
SETTINGS = Settings()
|