mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-22 12:11:26 +00:00
feat: add union type
This commit is contained in:
parent
9a7930bc25
commit
1dae9046f2
|
@ -1,7 +1,7 @@
|
||||||
import strawberry
|
import strawberry
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from selfprivacy_api.utils.prometheus import PrometheusQueries, PrometheusQueryResult
|
from selfprivacy_api.utils.prometheus import PrometheusQueries, Response
|
||||||
|
|
||||||
|
|
||||||
@strawberry.type
|
@strawberry.type
|
||||||
|
@ -12,7 +12,7 @@ class Monitoring:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60,
|
step: int = 60,
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
return PrometheusQueries.disk_usage(start, end, step)
|
return PrometheusQueries.disk_usage(start, end, step)
|
||||||
|
|
||||||
@strawberry.field
|
@strawberry.field
|
||||||
|
@ -21,7 +21,7 @@ class Monitoring:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60,
|
step: int = 60,
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
return PrometheusQueries.memory_usage(start, end, step)
|
return PrometheusQueries.memory_usage(start, end, step)
|
||||||
|
|
||||||
@strawberry.field
|
@strawberry.field
|
||||||
|
@ -30,5 +30,14 @@ class Monitoring:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60,
|
step: int = 60,
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
|
return PrometheusQueries.cpu_usage(start, end, step)
|
||||||
|
|
||||||
|
@strawberry.field
|
||||||
|
def network_usage(
|
||||||
|
self,
|
||||||
|
start: Optional[datetime] = None,
|
||||||
|
end: Optional[datetime] = None,
|
||||||
|
step: int = 60,
|
||||||
|
) -> Response:
|
||||||
return PrometheusQueries.cpu_usage(start, end, step)
|
return PrometheusQueries.cpu_usage(start, end, step)
|
||||||
|
|
|
@ -7,7 +7,7 @@ import strawberry
|
||||||
from strawberry.scalars import JSON
|
from strawberry.scalars import JSON
|
||||||
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from typing import Optional
|
from typing import Optional, Annotated, Union
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
|
|
||||||
PROMETHEUS_URL = "http://localhost:9001"
|
PROMETHEUS_URL = "http://localhost:9001"
|
||||||
|
@ -20,9 +20,20 @@ class PrometheusQueryResult:
|
||||||
result: JSON
|
result: JSON
|
||||||
|
|
||||||
|
|
||||||
|
@strawberry.type
|
||||||
|
class PrometheusQueryError:
|
||||||
|
error: str
|
||||||
|
|
||||||
|
|
||||||
|
Response = Annotated[
|
||||||
|
Union[PrometheusQueryResult, PrometheusQueryError],
|
||||||
|
strawberry.union("PrometheusQueryResponse"),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class PrometheusQueries:
|
class PrometheusQueries:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _send_query(query: str, start: int, end: int, step: int):
|
def _send_query(query: str, start: int, end: int, step: int) -> Response:
|
||||||
try:
|
try:
|
||||||
response = requests.get(
|
response = requests.get(
|
||||||
f"{PROMETHEUS_URL}/api/v1/query",
|
f"{PROMETHEUS_URL}/api/v1/query",
|
||||||
|
@ -34,20 +45,24 @@ class PrometheusQueries:
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
raise Exception("Prometheus returned unexpected HTTP status code")
|
return PrometheusQueryError(
|
||||||
|
error="Prometheus returned unexpected HTTP status code"
|
||||||
|
)
|
||||||
json = response.json()
|
json = response.json()
|
||||||
return PrometheusQueryResult(
|
return PrometheusQueryResult(
|
||||||
result_type=json["data"]["resultType"], result=json["data"]["result"]
|
result_type=json["data"]["resultType"], result=json["data"]["result"]
|
||||||
)
|
)
|
||||||
except Exception as error:
|
except Exception as error:
|
||||||
raise Exception("Prometheus request failed! " + str(error))
|
return PrometheusQueryError(
|
||||||
|
error=f"Prometheus request failed! Error: {str(error)}"
|
||||||
|
)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def cpu_usage(
|
def cpu_usage(
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60, # seconds
|
step: int = 60, # seconds
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
"""
|
"""
|
||||||
Get CPU information.
|
Get CPU information.
|
||||||
|
|
||||||
|
@ -82,7 +97,7 @@ class PrometheusQueries:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60, # seconds
|
step: int = 60, # seconds
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
"""
|
"""
|
||||||
Get memory usage.
|
Get memory usage.
|
||||||
|
|
||||||
|
@ -117,7 +132,7 @@ class PrometheusQueries:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60, # seconds
|
step: int = 60, # seconds
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
"""
|
"""
|
||||||
Get disk usage information.
|
Get disk usage information.
|
||||||
|
|
||||||
|
@ -152,7 +167,7 @@ class PrometheusQueries:
|
||||||
start: Optional[datetime] = None,
|
start: Optional[datetime] = None,
|
||||||
end: Optional[datetime] = None,
|
end: Optional[datetime] = None,
|
||||||
step: int = 60, # seconds
|
step: int = 60, # seconds
|
||||||
) -> PrometheusQueryResult:
|
) -> Response:
|
||||||
"""
|
"""
|
||||||
Get network usage information for both download and upload.
|
Get network usage information for both download and upload.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue