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
No related merge requests found
Pipeline #57134 passed with stages
in 1 minute and 32 seconds
...@@ -300,7 +300,7 @@ def dashboard_fslbmgravitywave(): ...@@ -300,7 +300,7 @@ def dashboard_fslbmgravitywave():
panels.append( panels.append(
get_time_series_panel( get_time_series_panel(
PanelInfos("/Communication.*_percentage/", Units.percent), PanelInfos("/Communication:.*_percentage/", Units.percent),
data_source, data_source,
measurment_name, measurment_name,
where=where, where=where,
...@@ -313,6 +313,21 @@ def dashboard_fslbmgravitywave(): ...@@ -313,6 +313,21 @@ def dashboard_fslbmgravitywave():
tooltipMode="single", 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, return build_dashboard(options,
panels=panels, panels=panels,
templating=filter_vars, templating=filter_vars,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment