From 0da8233146b474fc4f82c4099acce06e1443b1de Mon Sep 17 00:00:00 2001 From: varac Date: Thu, 20 Apr 2017 18:27:46 +0200 Subject: Increment Panel index again --- elastic/generate-config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'elastic/generate-config.py') diff --git a/elastic/generate-config.py b/elastic/generate-config.py index b935cb6..2978976 100755 --- a/elastic/generate-config.py +++ b/elastic/generate-config.py @@ -45,7 +45,7 @@ def generate_dashboards(): count = 0 for test_name in tests: count += 1 - panels += '{\\"id\\":\\"' + test_name + '\\",\\"panelIndex\\":1,\\"col\\":1,\\"row\\":' + str(count) + ',\\"size_x\\":6,\\"size_y\\":3,\\"type\\":\\"visualization\\"}, ' + panels += '{\\"id\\":\\"' + test_name + '\\",\\"panelIndex\\":' + str(count) + ',\\"col\\":1,\\"row\\":' + str(count) + ',\\"size_x\\":6,\\"size_y\\":3,\\"type\\":\\"visualization\\"}, ' panels = panels[:-2] panels += ']' @@ -72,4 +72,5 @@ for d in buckets: tests = sorted(tests) generate_dashboards() +print() generate_visualizations() -- cgit v1.2.3