add total usage pie chart based on total/free bytes

This commit is contained in:
Harshavardhana 2022-05-28 09:41:54 -07:00 committed by Minio Trusted
parent 5e3010d455
commit c2630bb3a3
2 changed files with 90 additions and 64 deletions

View File

@ -11,7 +11,7 @@
Visualize MinIO metrics with our official Grafana dashboard available on the [Grafana dashboard portal](https://grafana.com/grafana/dashboards/13502). Visualize MinIO metrics with our official Grafana dashboard available on the [Grafana dashboard portal](https://grafana.com/grafana/dashboards/13502).
Refer to the dashboard [json file here](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/minio-overview.json). Refer to the dashboard [json file here](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/minio-dashboard.json).
![Grafana](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/grafana-minio.png) ![Grafana](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/grafana-minio.png)

View File

@ -16,22 +16,22 @@
"name": "Bar gauge", "name": "Bar gauge",
"version": "" "version": ""
}, },
{
"type": "panel",
"id": "gauge",
"name": "Gauge",
"version": ""
},
{ {
"type": "grafana", "type": "grafana",
"id": "grafana", "id": "grafana",
"name": "Grafana", "name": "Grafana",
"version": "8.0.6" "version": "8.2.1"
}, },
{ {
"type": "panel", "type": "panel",
"id": "graph", "id": "graph",
"name": "Graph", "name": "Graph (old)",
"version": ""
},
{
"type": "panel",
"id": "piechart",
"name": "Pie chart",
"version": "" "version": ""
}, },
{ {
@ -56,16 +56,23 @@
"hide": true, "hide": true,
"iconColor": "rgba(0, 211, 255, 1)", "iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts", "name": "Annotations & Alerts",
"target": {
"limit": 100,
"matchAny": false,
"tags": [],
"type": "dashboard"
},
"type": "dashboard" "type": "dashboard"
} }
] ]
}, },
"description": "MinIO dashboard - https://min.io/", "description": "MinIO Grafana Dashboard - https://min.io/",
"editable": true, "editable": true,
"fiscalYearStartMonth": 0,
"gnetId": 13502, "gnetId": 13502,
"graphTooltip": 0, "graphTooltip": 0,
"id": null, "id": null,
"iteration": 1629787190164, "iteration": 1653756543524,
"links": [ "links": [
{ {
"icon": "external link", "icon": "external link",
@ -77,6 +84,7 @@
"type": "dashboards" "type": "dashboards"
} }
], ],
"liveNow": false,
"panels": [ "panels": [
{ {
"cacheTimeout": null, "cacheTimeout": null,
@ -133,7 +141,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -208,7 +216,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -232,8 +240,19 @@
{ {
"cacheTimeout": null, "cacheTimeout": null,
"datasource": "${DS_PROMETHEUS}", "datasource": "${DS_PROMETHEUS}",
"description": "",
"fieldConfig": { "fieldConfig": {
"defaults": { "defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
}
},
"mappings": [ "mappings": [
{ {
"options": { "options": {
@ -245,22 +264,13 @@
"type": "special" "type": "special"
} }
], ],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "rgba(255, 255, 255, 0.97)",
"value": null
}
]
},
"unit": "bytes" "unit": "bytes"
}, },
"overrides": [] "overrides": []
}, },
"gridPos": { "gridPos": {
"h": 6, "h": 6,
"w": 3, "w": 4,
"x": 6, "x": 6,
"y": 0 "y": 0
}, },
@ -269,7 +279,15 @@
"links": [], "links": [],
"maxDataPoints": 100, "maxDataPoints": 100,
"options": { "options": {
"orientation": "horizontal", "displayLabels": [],
"legend": {
"displayMode": "table",
"placement": "bottom",
"values": [
"percent"
]
},
"pieType": "donut",
"reduceOptions": { "reduceOptions": {
"calcs": [ "calcs": [
"lastNotNull" "lastNotNull"
@ -277,28 +295,36 @@
"fields": "", "fields": "",
"values": false "values": false
}, },
"showThresholdLabels": false, "tooltip": {
"showThresholdMarkers": true, "mode": "single"
"text": {} }
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
"expr": "topk(1, sum(minio_cluster_capacity_usable_free_bytes{job=\"$scrape_jobs\"}) by (instance))", "expr": "topk(1, sum(minio_cluster_capacity_usable_total_bytes{job=\"$scrape_jobs\"}) by (instance)) - topk(1, sum(minio_cluster_capacity_usable_free_bytes{job=\"$scrape_jobs\"}) by (instance))",
"format": "time_series", "format": "time_series",
"instant": false, "instant": false,
"interval": "1m", "interval": "1m",
"intervalFactor": 1, "intervalFactor": 1,
"legendFormat": "", "legendFormat": "Used",
"refId": "A", "refId": "A",
"step": 300 "step": 300
},
{
"exemplar": true,
"expr": "topk(1, sum(minio_cluster_capacity_usable_free_bytes{job=\"$scrape_jobs\"}) by (instance)) ",
"hide": false,
"interval": "1m",
"legendFormat": "Free",
"refId": "B"
} }
], ],
"timeFrom": null, "timeFrom": null,
"timeShift": null, "timeShift": null,
"title": "Current Usable Capacity", "title": "Capacity",
"type": "gauge" "type": "piechart"
}, },
{ {
"aliasColors": {}, "aliasColors": {},
@ -310,8 +336,8 @@
"fillGradient": 0, "fillGradient": 0,
"gridPos": { "gridPos": {
"h": 6, "h": 6,
"w": 7, "w": 6,
"x": 9, "x": 10,
"y": 0 "y": 0
}, },
"hiddenSeries": false, "hiddenSeries": false,
@ -332,7 +358,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -434,7 +460,7 @@
"showUnfilled": false, "showUnfilled": false,
"text": {} "text": {}
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -512,7 +538,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -588,7 +614,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -668,7 +694,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -748,7 +774,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -828,7 +854,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -911,7 +937,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -962,7 +988,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1058,7 +1084,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1178,7 +1204,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -1258,7 +1284,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -1341,7 +1367,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -1405,7 +1431,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -1473,7 +1499,7 @@
"text": {}, "text": {},
"textMode": "auto" "textMode": "auto"
}, },
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"targets": [ "targets": [
{ {
"exemplar": true, "exemplar": true,
@ -1528,7 +1554,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1624,7 +1650,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1730,7 +1756,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 5, "pointradius": 5,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1833,7 +1859,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -1941,7 +1967,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2033,7 +2059,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2125,7 +2151,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2219,7 +2245,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2326,7 +2352,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2443,7 +2469,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2536,7 +2562,7 @@
"alertThreshold": true "alertThreshold": true
}, },
"percentage": false, "percentage": false,
"pluginVersion": "8.0.6", "pluginVersion": "8.2.1",
"pointradius": 2, "pointradius": 2,
"points": false, "points": false,
"renderer": "flot", "renderer": "flot",
@ -2606,8 +2632,8 @@
} }
} }
], ],
"refresh": "10s", "refresh": false,
"schemaVersion": 30, "schemaVersion": 31,
"style": "dark", "style": "dark",
"tags": [ "tags": [
"minio" "minio"
@ -2668,7 +2694,7 @@
] ]
}, },
"timezone": "", "timezone": "",
"title": "MinIO Overview", "title": "MinIO Dashboard",
"uid": "TgmJnqnnk", "uid": "TgmJnqnnk",
"version": 18 "version": 7
} }