Implement pull request comments #200.

Co-authored-by: Sebastian Serth <mrserth@users.noreply.github.com>
This commit is contained in:
Maximilian Paß
2022-10-29 19:36:25 +01:00
parent 694965b92d
commit 137e3ff1ee
10 changed files with 32 additions and 22 deletions

View File

@ -0,0 +1,25 @@
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()