Files
poseidon/deploy/grafana-dashboard/panels/poseidon.dashboard.py
Maximilian Paß 137e3ff1ee Implement pull request comments #200.
Co-authored-by: Sebastian Serth <mrserth@users.noreply.github.com>
2022-10-29 23:20:29 +01:00

26 lines
668 B
Python

from grafanalib.core import Dashboard, Templating, Time
from panels.availability_row import availability_row
from panels.general_row import general_row
from panels.runner_insights_row import runner_insights_row
from utils.variables import stage_variable, environment_variable
dashboard = Dashboard(
title="Poseidon autogen",
timezone="browser",
panels=[
general_row,
runner_insights_row,
availability_row
],
templating=Templating(list=[
stage_variable,
environment_variable
]),
editable=True,
refresh="30s",
time=Time('now-6h', 'now'),
uid="P21Bh1SVk",
version=1
).auto_panel_ids()