From c32432c67cc661378b58764aa89a9b54cfc18ad1 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 7 Jun 2018 09:40:07 +1000 Subject: [PATCH] zuul grafana: fix load average graph The scale argument was incorrectly outside the function for the load average graph. Also we seem to have acquired some extra ")"'s somehow Change-Id: I0a6a90ed30fac11aedc889cfdcfd4dbb3f815b5a --- grafana/zuul-status.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/grafana/zuul-status.yaml b/grafana/zuul-status.yaml index e1cdc431df..045cd019f0 100644 --- a/grafana/zuul-status.yaml +++ b/grafana/zuul-status.yaml @@ -176,7 +176,7 @@ dashboard: - title: Running Builds span: 6 targets: - - target: aliasSub(stats.gauges.zuul.executor.*.running_builds, ".*\.(.*)_openstack_org.*", "\1")) + - target: aliasSub(stats.gauges.zuul.executor.*.running_builds, ".*\.(.*)_openstack_org.*", "\1") type: graph - title: Executor Queue span: 6 @@ -187,17 +187,17 @@ dashboard: - title: Load Average span: 6 targets: - - target: aliasSub(scale(stats.gauges.zuul.executor.*.load_average, ".*\.(.*)_openstack_org.*", 0.01), "\1") + - target: aliasSub(scale(stats.gauges.zuul.executor.*.load_average, 0.01), ".*\.(.*)_openstack_org.*", "\1") type: graph - title: Starting Builds span: 6 targets: - - target: aliasSub(stats.gauges.zuul.executor.*.starting_builds, ".*\.(.*)_openstack_org.*", "\1")) + - target: aliasSub(stats.gauges.zuul.executor.*.starting_builds, ".*\.(.*)_openstack_org.*", "\1") type: graph - title: Used RAM span: 6 targets: - - target: aliasSub(stats.gauges.zuul.executor.*.pct_used_ram, ".*\.(.*)_openstack_org.*", "\1")) + - target: aliasSub(stats.gauges.zuul.executor.*.pct_used_ram, ".*\.(.*)_openstack_org.*", "\1") type: graph - title: Mergers showTitle: true