browbeat/ansible/install/grafana-dashboards.yml
akrzos fa150260e3 Adding BlockStorage Node type
BlockStoage Node type Updates
* Add functionality to generate_tripleo_hostfile.sh to capture BlockStorage
  Nodes
* Add BlockStoage Nodes to Grafana Dashboards (General Dashboard and Cloud-
  Specific Dashboards)

Change-Id: I2c219e1fea65c6268071ca03391a074f5671ef99
2017-01-17 11:37:26 -05:00

56 lines
1.7 KiB
YAML

---
#
# Uploads and Builds Dashboards for Browbeat analysis of System Performance Metrics
#
# You can upload just the Static and Generated General Dashboards with:
# ansible-playbook -i hosts install/grafana-dashboards.yml -e 'cloud_dashboards=false'
#
#
- hosts: localhost
gather_facts: false
vars:
ansible_connection: local
cloud_dashboards: true
overwrite_existing: true
static_dashboards:
- cloud-system-performance-comparsion
cloud_specific_dashboards:
- cpu
- memory
- disk
- disks_all
- network
- log
general_dashboards:
- template_name: openstack
template_node_type: undercloud
process_list_name: OpenStack-Undercloud
- template_name: openstack
template_node_type: controller
process_list_name: OpenStack-Controller
- template_name: openstack
template_node_type: blockstorage
process_list_name: OpenStack-BlockStorage
- template_name: openstack
template_node_type: objectstorage
process_list_name: OpenStack-ObjectStorage
- template_name: openstack
template_node_type: cephstorage
process_list_name: OpenStack-CephStorage
- template_name: openstack
template_node_type: compute
process_list_name: OpenStack-Compute
- template_name: openstack
template_node_type: "*"
process_list_name: OpenStack
# Non-OpenStack specific dashboards that are included:
- template_name: baremetal
process_list_name: Baremetal
- template_name: guest
process_list_name: Guest
- template_name: graphite
process_list_name: Graphite
roles:
- grafana-dashboards