21 lines
659 B
YAML
21 lines
659 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- include_role:
|
|
name: grafana
|
|
tasks_from: import_dashboard.yaml
|
|
vars:
|
|
grafana_dashboard_content: "{{ lookup('template', 'templates/grafana/' + item + '.j2') | from_yaml }}"
|
|
grafana_uid_prefix: "testing"
|
|
grafana_dashboard_folder: "testingApimon"
|
|
grafana_ds: "apimon-carbonapi"
|
|
loop:
|
|
- apimon/test_results.yaml
|
|
- apimon/endpoint_monitor.yaml
|
|
- apimon/compute.yaml
|
|
- apimon/identity.yaml
|
|
- apimon/block_storage.yaml
|
|
- apimon/image.yaml
|
|
- apimon/network.yaml
|
|
- apimon/storage.yaml
|
|
- apimon/kpi.yaml
|