fa150260e3
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
381 lines
11 KiB
Django/Jinja
381 lines
11 KiB
Django/Jinja
{% set vars = {'panel_idx': 0, 'initial': 0, 'initial2': 0} %}
|
|
{% set dashboard_groups = ['undercloud', 'controller', 'blockstorage', 'objectstorage', 'cephstorage', 'compute'] %}
|
|
{
|
|
"dashboard": {
|
|
"id": null,
|
|
"title": "{{dashboard_cloud_name}} - Network",
|
|
"tags": [
|
|
"{{dashboard_cloud_name}}"
|
|
],
|
|
"style": "dark",
|
|
"timezone": "utc",
|
|
"editable": true,
|
|
"hideControls": false,
|
|
"sharedCrosshair": false,
|
|
"rows": [
|
|
{% for group in dashboard_groups %}
|
|
{% if group in groups %}
|
|
{% for batched_hosts in groups[group]|hosts_to_dictionary|dictsort|batch(dashboards_batch) %}
|
|
{% if vars.initial == 0 %}
|
|
{% if vars.update({'initial': (vars.initial + 1)}) %} {% endif %}
|
|
{% else %}
|
|
},
|
|
{% endif %}
|
|
{
|
|
"collapse": true,
|
|
"editable": true,
|
|
"height": "250px",
|
|
"panels": [
|
|
{% for index, host in batched_hosts %}
|
|
{
|
|
"aliasColors": {},
|
|
"bars": false,
|
|
"datasource": null,
|
|
"editable": true,
|
|
"error": false,
|
|
"fill": 1,
|
|
"grid": {
|
|
"leftLogBase": 1,
|
|
"leftMax": null,
|
|
"leftMin": null,
|
|
"rightLogBase": 1,
|
|
"rightMax": null,
|
|
"rightMin": null,
|
|
"threshold1": null,
|
|
"threshold1Color": "rgba(216, 200, 27, 0.27)",
|
|
"threshold2": null,
|
|
"threshold2Color": "rgba(234, 112, 112, 0.22)"
|
|
},
|
|
{% if vars.update({'panel_idx': (vars.panel_idx + 1)}) %} {% endif %}
|
|
"id": {{vars.panel_idx}},
|
|
"isNew": true,
|
|
"legend": {
|
|
"alignAsTable": true,
|
|
"avg": true,
|
|
"current": true,
|
|
"max": true,
|
|
"min": true,
|
|
"rightSide": true,
|
|
"show": true,
|
|
"total": false,
|
|
"values": true
|
|
},
|
|
"lines": true,
|
|
"linewidth": 2,
|
|
"links": [],
|
|
"nullPointMode": "connected",
|
|
"percentage": false,
|
|
"pointradius": 5,
|
|
"points": false,
|
|
"renderer": "flot",
|
|
"seriesOverrides": [
|
|
{
|
|
"alias": "RX",
|
|
"transform": "negative-Y"
|
|
}
|
|
],
|
|
"span": 12,
|
|
"stack": false,
|
|
"steppedLine": false,
|
|
"targets": [
|
|
{
|
|
"refId": "A",
|
|
"target": "alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_packets.tx, 'TX')"
|
|
},
|
|
{
|
|
"refId": "B",
|
|
"target": "alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_packets.rx, 'RX')"
|
|
}
|
|
],
|
|
"timeFrom": null,
|
|
"timeShift": null,
|
|
"title": "{{host}} - ${{group}}_interface pps",
|
|
"tooltip": {
|
|
"shared": true,
|
|
"value_type": "cumulative"
|
|
},
|
|
"type": "graph",
|
|
"x-axis": true,
|
|
"y-axis": true,
|
|
"y_formats": [
|
|
"pps",
|
|
"short"
|
|
]
|
|
{% if loop.last %}
|
|
}
|
|
{% else %}
|
|
},
|
|
{% endif %}
|
|
{% endfor %}
|
|
],
|
|
{% if 'undercloud' in group %}
|
|
"title": "{{group}} Network pps",
|
|
{% else %}
|
|
"title": "{{group}} ({{batched_hosts[0][0]}} - {{batched_hosts[-1][0]}}) Network pps",
|
|
{% endif %}
|
|
"showTitle": true
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if loop.last %}
|
|
},
|
|
{% 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 vars.initial2 == 0 %}
|
|
{% if vars.update({'initial2': (vars.initial2 + 1)}) %} {% endif %}
|
|
{% else %}
|
|
},
|
|
{% endif %}
|
|
{
|
|
"collapse": true,
|
|
"editable": true,
|
|
"height": "250px",
|
|
"panels": [
|
|
{% for index, host in batched_hosts %}
|
|
{
|
|
"aliasColors": {},
|
|
"bars": false,
|
|
"datasource": null,
|
|
"editable": true,
|
|
"error": false,
|
|
"fill": 1,
|
|
"grid": {
|
|
"leftLogBase": 1,
|
|
"leftMax": null,
|
|
"leftMin": null,
|
|
"rightLogBase": 1,
|
|
"rightMax": null,
|
|
"rightMin": null,
|
|
"threshold1": null,
|
|
"threshold1Color": "rgba(216, 200, 27, 0.27)",
|
|
"threshold2": null,
|
|
"threshold2Color": "rgba(234, 112, 112, 0.22)"
|
|
},
|
|
{% if vars.update({'panel_idx': (vars.panel_idx + 1)}) %} {% endif %}
|
|
"id": {{vars.panel_idx}},
|
|
"isNew": true,
|
|
"legend": {
|
|
"alignAsTable": true,
|
|
"avg": true,
|
|
"current": true,
|
|
"max": true,
|
|
"min": true,
|
|
"rightSide": true,
|
|
"show": true,
|
|
"total": false,
|
|
"values": true
|
|
},
|
|
"lines": true,
|
|
"linewidth": 2,
|
|
"links": [],
|
|
"nullPointMode": "connected",
|
|
"percentage": false,
|
|
"pointradius": 5,
|
|
"points": false,
|
|
"renderer": "flot",
|
|
"seriesOverrides": [
|
|
{
|
|
"alias": "RX",
|
|
"transform": "negative-Y"
|
|
}
|
|
],
|
|
"span": 12,
|
|
"stack": false,
|
|
"steppedLine": false,
|
|
"targets": [
|
|
{
|
|
"refId": "A",
|
|
"target": "alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_octets.tx, 'TX')"
|
|
},
|
|
{
|
|
"refId": "B",
|
|
"target": "alias({{dashboard_cloud_name}}.{{host}}.${{group}}_interface.if_octets.rx, 'RX')"
|
|
}
|
|
],
|
|
"timeFrom": null,
|
|
"timeShift": null,
|
|
"title": "{{host}} - ${{group}}_interface Throughput",
|
|
"tooltip": {
|
|
"shared": true,
|
|
"value_type": "cumulative"
|
|
},
|
|
"type": "graph",
|
|
"x-axis": true,
|
|
"y-axis": true,
|
|
"y_formats": [
|
|
"Bps",
|
|
"short"
|
|
]
|
|
{% if loop.last %}
|
|
}
|
|
{% else %}
|
|
},
|
|
{% endif %}
|
|
{% endfor %}
|
|
],
|
|
{% if 'undercloud' in group %}
|
|
"title": "{{group}} Network Throughput",
|
|
{% else %}
|
|
"title": "{{group}} ({{batched_hosts[0][0]}} - {{batched_hosts[-1][0]}}) Network Throughput",
|
|
{% endif %}
|
|
"showTitle": true
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if loop.last %}
|
|
}
|
|
{% endif %}
|
|
{% endfor %}
|
|
],
|
|
"time": {
|
|
"from": "now-1h",
|
|
"to": "now"
|
|
},
|
|
"timepicker": {
|
|
"refresh_intervals": [
|
|
"5s",
|
|
"10s",
|
|
"30s",
|
|
"1m",
|
|
"5m",
|
|
"15m",
|
|
"30m",
|
|
"1h",
|
|
"2h",
|
|
"1d"
|
|
],
|
|
"time_options": [
|
|
"5m",
|
|
"15m",
|
|
"1h",
|
|
"6h",
|
|
"12h",
|
|
"24h",
|
|
"2d",
|
|
"7d",
|
|
"30d"
|
|
]
|
|
},
|
|
"templating": {
|
|
"list": [
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "interface-br-ctlplane",
|
|
"value": "interface-br-ctlplane"
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "undercloud_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*undercloud*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
},
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "interface-br-ex",
|
|
"value": "interface-br-ex"
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "controller_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*controller*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
},
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "interface-br-ex",
|
|
"value": "interface-br-ex"
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "compute_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*compute*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
},
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "None",
|
|
"value": "",
|
|
"isNone": true
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "cephstorage_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*cephstorage*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
},
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "None",
|
|
"value": "",
|
|
"isNone": true
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "objectstorage_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*objectstorage*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
},
|
|
{
|
|
"allFormat": "glob",
|
|
"current": {
|
|
"text": "interface-br-ex",
|
|
"value": "interface-br-ex"
|
|
},
|
|
"datasource": null,
|
|
"includeAll": false,
|
|
"multi": false,
|
|
"multiFormat": "glob",
|
|
"name": "blockstorage_interface",
|
|
"options": [],
|
|
"query": "{{dashboard_cloud_name}}.*blockstorage*.interface-*",
|
|
"refresh": true,
|
|
"type": "query"
|
|
}
|
|
]
|
|
},
|
|
"annotations": {
|
|
"list": []
|
|
},
|
|
"schemaVersion": 8,
|
|
"version": 5,
|
|
"links": [
|
|
{
|
|
"icon": "external link",
|
|
"tags": [
|
|
"{{dashboard_cloud_name}}"
|
|
],
|
|
"type": "dashboards",
|
|
"asDropdown": true,
|
|
"title": "{{dashboard_cloud_name}} Dashboards"
|
|
}
|
|
],
|
|
"overwrite": true
|
|
}
|
|
}
|