summaryrefslogtreecommitdiff
path: root/elastic/generate-config.py
diff options
context:
space:
mode:
Diffstat (limited to 'elastic/generate-config.py')
-rwxr-xr-xelastic/generate-config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/elastic/generate-config.py b/elastic/generate-config.py
index 88d6e82..45b7c35 100755
--- a/elastic/generate-config.py
+++ b/elastic/generate-config.py
@@ -49,19 +49,19 @@ def generate_visualizations(tests):
os.unlink(os.path.join(out_dir, f))
graphs = [
- ('time', 'weasel', template_visState_time),
- ('resources', 'Beluga', template_visState_resources)
+ ('time', 'Time taken by ', 'weasel', template_visState_time),
+ ('resources', 'Resources consumed by ', 'Beluga', template_visState_resources)
]
for test_name in tests:
- for type, host, template_visState in graphs:
+ for type, title, host, template_visState in graphs:
out_file = os.path.join(out_dir, test_name + '_' + type + '.json')
logger.info('Generating ' + out_file)
context = {
- 'title': test_name + "_" + type,
+ 'title': title + test_name,
'test_name': test_name,
'query': "commit_info.project:soledad "
# "AND commit_info.branch='master' "