diff options
author | drebs <drebs@riseup.net> | 2017-06-21 09:23:03 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-06-21 09:23:03 -0300 |
commit | 89aa15112096356cc95871ec539aa739ca0c6c05 (patch) | |
tree | 9feaa5f98b46c911dace2c5fa6500117b428fd3e /elastic/generate-config.py | |
parent | bfb03834ed5043f781dadcfd747087e5be30d3c3 (diff) |
[elastic] remove x-axis labels
Diffstat (limited to 'elastic/generate-config.py')
-rwxr-xr-x | elastic/generate-config.py | 8 |
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' " |