c34543f909
Reasons to move from json, json.j2 to yaml/yaml.j2 + GrafYaml: * Yaml is less lines * Yaml allows comments * Yaml means less curly braces and quotes * GrafYaml manages panel ids and target refIds * GrafYaml defaults reduce number of lines stored * GrafYaml allows more easily cut/paste management of Dashboards Identified Downsides: * GrafYaml will be behind the Grafana Dashboard Model (Until code is updated) * Json will always allow full feature set * Installing Dashboards now requires GrafYaml New Dashboards/Features: * Templated Dashboards (Reduce line count in "static" dashboards) * Cloud Specific networks - all dashboard * Three Node Performance Food groups Enhanced * Networker Node added for Cloud Specific Dashboards and Total Memory Change-Id: I55ce9f9f6c28497c8b4ed7a19d42657a8eb14170
130 lines
3.9 KiB
Django/Jinja
130 lines
3.9 KiB
Django/Jinja
#jinja2:lstrip_blocks: True
|
|
---
|
|
dashboard:
|
|
title: {{dashboard_cloud_name}} - Network
|
|
links:
|
|
- type: dashboards
|
|
asDropdown: true
|
|
icon: external link
|
|
includeVars: true
|
|
keepTime: true
|
|
tags:
|
|
- {{dashboard_cloud_name}}
|
|
targetBlank: true
|
|
title: "{{dashboard_cloud_name}} Dashboards"
|
|
tags:
|
|
- {{dashboard_cloud_name}}
|
|
templating:
|
|
- name: undercloud_interface
|
|
query: "{{dashboard_cloud_name}}.*undercloud*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
- name: controller_interface
|
|
query: "{{dashboard_cloud_name}}.*controller*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
- name: compute_interface
|
|
query: "{{dashboard_cloud_name}}.*compute*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
- name: cephstorage_interface
|
|
query: "{{dashboard_cloud_name}}.*cephstorage*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
- name: objectstorage_interface
|
|
query: "{{dashboard_cloud_name}}.*objectstorage*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
- name: blockstorage_interface
|
|
query: "{{dashboard_cloud_name}}.*blockstorage*.interface-*"
|
|
refresh: true
|
|
type: query
|
|
time:
|
|
from: now-1h
|
|
to: now
|
|
rows:
|
|
- title: description row
|
|
height: 50px
|
|
panels:
|
|
- title: Browbeat provided Dashboard
|
|
content: "**This dashboard is provided by Browbeat and managed via Grafyaml**"
|
|
type: text
|
|
{% for group in dashboard_groups %}
|
|
{% if group in groups %}
|
|
{% for batched_hosts in groups[group]|hosts_to_dictionary|dictsort|batch(dashboards_batch) %}
|
|
{% if 'undercloud' in group %}
|
|
- title: {{group}} Network pps
|
|
{% else %}
|
|
- title: {{group}} ({{batched_hosts[0][0]}} - {{batched_hosts[-1][0]}}) Network pps
|
|
{% endif %}
|
|
collapse: true
|
|
height: 250px
|
|
showTitle: true
|
|
panels:
|
|
{% for index, host in batched_hosts %}
|
|
- title: {{host}} - ${{group}}_interface pps
|
|
type: graph
|
|
legend:
|
|
alignAsTable: true
|
|
avg: true
|
|
current: true
|
|
max: true
|
|
min: true
|
|
rightSide: true
|
|
show: true
|
|
total: false
|
|
values: true
|
|
nullPointMode: 'null'
|
|
seriesOverrides:
|
|
- alias: RX
|
|
transform: negative-Y
|
|
targets:
|
|
- target: alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_packets.tx, 'TX')
|
|
- target: alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_packets.rx, 'RX')
|
|
yaxes:
|
|
- format: pps
|
|
- format: short
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for group in dashboard_groups %}
|
|
{% if group in groups %}
|
|
{% for batched_hosts in groups[group]|hosts_to_dictionary|dictsort|batch(dashboards_batch) %}
|
|
{% if 'undercloud' in group %}
|
|
- title: {{group}} Network Throughput
|
|
{% else %}
|
|
- title: {{group}} ({{batched_hosts[0][0]}} - {{batched_hosts[-1][0]}}) Network Throughput
|
|
{% endif %}
|
|
collapse: true
|
|
height: 250px
|
|
showTitle: true
|
|
panels:
|
|
{% for index, host in batched_hosts %}
|
|
- title: {{host}} - ${{group}}_interface Throughput
|
|
type: graph
|
|
legend:
|
|
alignAsTable: true
|
|
avg: true
|
|
current: true
|
|
max: true
|
|
min: true
|
|
rightSide: true
|
|
show: true
|
|
total: false
|
|
values: true
|
|
nullPointMode: 'null'
|
|
seriesOverrides:
|
|
- alias: RX
|
|
transform: negative-Y
|
|
targets:
|
|
- target: alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_octets.tx, 'TX')
|
|
- target: alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_octets.rx, 'RX')
|
|
yaxes:
|
|
- format: Bps
|
|
- format: short
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|