mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
0e82801512
* chore: add upcloud monitoring * Added db_role to new_relic metrics --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
22 lines
311 B
Python
22 lines
311 B
Python
from dataclasses import dataclass
|
|
from typing import List
|
|
|
|
|
|
@dataclass
|
|
class UpcloudRecord:
|
|
db_role: str
|
|
label: str
|
|
time: str
|
|
value: float
|
|
|
|
|
|
@dataclass
|
|
class UpcloudMetric:
|
|
metric_name: str
|
|
records: List[UpcloudRecord]
|
|
|
|
|
|
@dataclass
|
|
class UpcloudMetrics:
|
|
metrics: List[UpcloudMetric]
|