Skip to content
Snippets Groups Projects
Commit 785a9725 authored by Christoph Alt's avatar Christoph Alt
Browse files

added a panel for the sweep runtime percentage

parent 28adb411
Branches
No related tags found
No related merge requests found
Pipeline #57134 passed
......@@ -300,7 +300,7 @@ def dashboard_fslbmgravitywave():
panels.append(
get_time_series_panel(
PanelInfos("/Communication.*_percentage/", Units.percent),
PanelInfos("/Communication:.*_percentage/", Units.percent),
data_source,
measurment_name,
where=where,
......@@ -313,6 +313,21 @@ def dashboard_fslbmgravitywave():
tooltipMode="single",
))
panels.append(
get_time_series_panel(
PanelInfos(r"/Sweep:.*_percentage/", Units.percent),
data_source,
measurment_name,
where=where,
group_by=[f.name for f in filters],
gridPos=get_grid_pos(12, 12, 0, (len(fields)+1)*(13)),
drawStyle="bars",
stacking={"mode": "normal"},
fillOpacity=70,
gradientMode="Opacity",
tooltipMode="single",
))
return build_dashboard(options,
panels=panels,
templating=filter_vars,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment