Have Browbeat gather metadata for oooq

So in Joe's recent metadata commit he added a test
for regather, while this test works it does run the
entire benchmark twice, which isn't exactly ideal.
*stares at 22h old Newton build* this commit instead
stops gathering metadata as a seperate role and simply
runs Browbeat without gathering metadata, doing the same
test without taking twice the time.

Change-Id: I611c23ea683d167806f4ab88cbad93549c4dec87
This commit is contained in:
jkilpatr 2017-01-17 07:16:06 -05:00
parent 482c1e7994
commit 725035ec94
3 changed files with 0 additions and 11 deletions

View File

@ -30,7 +30,6 @@
hosts: undercloud
roles:
- browbeat/collectd
- browbeat/gather-metadata
- browbeat/bug-check
- browbeat/grafana-dashboard-setup
- browbeat/browbeat-run

View File

@ -21,7 +21,6 @@
hosts: undercloud
roles:
- browbeat/collectd
- browbeat/gather-metadata
- browbeat/bug-check
- browbeat/grafana-dashboard-setup
- browbeat/browbeat-run

View File

@ -5,12 +5,3 @@
"source {{ ansible_env.HOME }}/browbeat-venv/bin/activate; \
cd {{ ansible_env.HOME }}/browbeat/; \
python browbeat.py rally > {{ ansible_env.HOME }}/browbeat/results/browbeat_run.log"
- name: Run Browbeat Test Regather
shell:
"source {{ ansible_env.HOME }}/browbeat-venv/bin/activate; \
cd {{ ansible_env.HOME }}/browbeat/; \
rm metadata/software-metadata.json; \
rm metadata/hardware-metadata.json; \
rm metadata/environment-metadata.json; \
python browbeat.py rally > {{ ansible_env.HOME }}/browbeat/results/browbeat_run.log"