Merge "Store Grafana links for CI results"

This commit is contained in:
Jenkins 2017-06-20 16:47:30 +00:00 committed by Gerrit Code Review
commit 6f9aef7987
7 changed files with 23 additions and 25 deletions

View File

@ -60,5 +60,4 @@
- name: Run Browbeat
hosts: undercloud
roles:
- browbeat/grafana-dashboard-setup
- browbeat/browbeat-run

View File

@ -31,5 +31,4 @@
roles:
- browbeat/collectd
- browbeat/bug-check
- browbeat/grafana-dashboard-setup
- browbeat/browbeat-run

View File

@ -3,8 +3,8 @@ browbeat:
rerun: 3
cloud_name: {{ browbeat_cloud_name }}
elasticsearch:
enabled: {{ elastic_enabled_template }}
host: {{ elastic_host_template }}
enabled: {{ elastic_enabled }}
host: {{ elastic_host }}
port: 9200
regather: true
metadata_files:
@ -27,11 +27,11 @@ ansible:
grafana_snapshot: ansible/browbeat/snapshot-general-performance-dashboard.yml
metadata: ansible/gather/site.yml
connmon:
enabled: {{ connmon_enabled_template }}
enabled: {{ connmon_enabled }}
sudo: true
grafana:
enabled: {{ grafana_enabled_template }}
grafana_ip: {{ grafana_host_template }}
enabled: {{ grafana_enabled }}
grafana_ip: {{ grafana_host }}
grafana_port: 3000
dashboards:
- openstack-general-system-performance

View File

@ -5,8 +5,8 @@ browbeat:
rerun: 1
cloud_name: {{ browbeat_cloud_name }}
elasticsearch:
enabled: {{ elastic_enabled_template }}
host: {{ elastic_host_template }}
enabled: {{ elastic_enabled }}
host: {{ elastic_host }}
port: 9200
regather: true
metadata_files:
@ -29,11 +29,11 @@ ansible:
grafana_snapshot: ansible/browbeat/snapshot-general-performance-dashboard.yml
metadata: ansible/gather/site.yml
connmon:
enabled: {{ connmon_enabled_template }}
enabled: {{ connmon_enabled }}
sudo: true
grafana:
enabled: {{ grafana_enabled_template }}
grafana_ip: {{ grafana_host_template }}
enabled: {{ grafana_enabled }}
grafana_ip: {{ grafana_host }}
grafana_port: 3000
dashboards:
- openstack-general-system-performance

View File

@ -5,8 +5,8 @@ browbeat:
rerun: 1
cloud_name: {{ browbeat_cloud_name }}
elasticsearch:
enabled: {{ elastic_enabled_template }}
host: {{ elastic_host_template }}
enabled: {{ elastic_enabled }}
host: {{ elastic_host }}
port: 9200
regather: true
metadata_files:
@ -29,11 +29,11 @@ ansible:
grafana_snapshot: ansible/browbeat/snapshot-general-performance-dashboard.yml
metadata: ansible/gather/site.yml
connmon:
enabled: {{ connmon_enabled_template }}
enabled: {{ connmon_enabled }}
sudo: true
grafana:
enabled: {{ grafana_enabled_template }}
grafana_ip: {{ grafana_host_template }}
enabled: {{ grafana_enabled }}
grafana_ip: {{ grafana_host }}
grafana_port: 3000
dashboards:
- openstack-general-system-performance

View File

@ -1,8 +1,8 @@
elastic_enabled_template: false
elastic_host_template: "1.2.3.4.5"
connmon_enabled_template: false
grafana_enabled_template: false
grafana_host_template: "1.2.3.4.5"
elastic_enabled: false
elastic_host: "1.2.3.4.5"
connmon_enabled: false
grafana_enabled: false
grafana_host: "1.2.3.4.5"
browbeat_config_file: "browbeat-basic.yaml.j2"
browbeat_cloud_name: "browbeat_ci"
overcloud_size: "{{ groups['overcloud'] | length }}"

View File

@ -23,9 +23,9 @@ export HW_ENV_DIR=$WORKSPACE/tripleo-environments/hardware_environments/$HW_ENV
export NETWORK_ISOLATION=no_vlan
export REQS=quickstart-extras-requirements.txt
export PLAYBOOK=baremetal-virt-undercloud-tripleo-browbeat.yml
export VARS="elastic_enabled_template=true \
--extra-vars grafana_enabled_template=false \
--extra-vars elastic_host_template=$ELASTIC_HOST \
export VARS="elastic_enabled=true \
--extra-vars grafana_enabled=true \
--extra-vars elastic_host=$ELASTIC_HOST \
--extra-vars graphite_host=$GRAPH_HOST \
--extra-vars statsd_host=$GRAPH_HOST \
--extra-vars statsd_enabled=True \