mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-23 04:21:29 +00:00
25 lines
818 B
Python
25 lines
818 B
Python
import strawberry
|
|
from typing import Optional
|
|
from selfprivacy_api.utils.prometheus import PrometheusQueries, PrometheusQueryResult
|
|
|
|
|
|
@strawberry.type
|
|
class Monitoring:
|
|
@strawberry.field
|
|
def disk_usage(
|
|
start: Optional[int] = None, end: Optional[int] = None, step: int = 60
|
|
) -> PrometheusQueryResult:
|
|
return PrometheusQueries.disk_usage(start, end, step)
|
|
|
|
@strawberry.field
|
|
def memory_usage(
|
|
start: Optional[int] = None, end: Optional[int] = None, step: int = 60
|
|
) -> PrometheusQueryResult:
|
|
return PrometheusQueries.memory_usage(start, end, step)
|
|
|
|
@strawberry.field
|
|
def cpu_usage(
|
|
start: Optional[int] = None, end: Optional[int] = None, step: int = 60
|
|
) -> PrometheusQueryResult:
|
|
return PrometheusQueries.cpu_usage(start, end, step)
|