mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-14 06:45:18 +00:00
8 lines
188 B
Python
8 lines
188 B
Python
from dataclasses import dataclass
|
|
from typing import Optional
|
|
|
|
|
|
@dataclass
|
|
class CpuCheckConfig:
|
|
warning_percentage: Optional[float] = 80
|
|
critical_percentage: Optional[float] = 90
|