/usr/share/grafana/public/app/plugins/datasource/azuremonitor/dashboards
{ "__inputs": [], "__elements": {}, "__requires": [ { "type": "panel", "id": "bargauge", "name": "Bar gauge", "version": "" }, { "type": "grafana", "id": "grafana", "name": "Grafana", "version": "10.4.1" }, { "type": "datasource", "id": "grafana-azure-monitor-datasource", "name": "Azure Monitor", "version": "1.0.0" }, { "type": "datasource", "id": "marcusolsson-json-datasource", "name": "JSON API", "version": "1.3.12" }, { "type": "panel", "id": "stat", "name": "Stat", "version": "" }, { "type": "panel", "id": "text", "name": "Text", "version": "" } ], "description": "This dashboard displays traffic-light indicators to show the health of your Azure infrastructure resources based on key performance indicators and thresholds defined for each infrastructure resource type. The KPIs and thresholds come from Azure Monitor Baseline Alerts (https://azure.github.io/azure-monitor-baseline-alerts/). \n\nPrerequisites:\nThe queries used in the dashboard require that you have resource metrics being sent to a Log Analytics Workspace. The AzureMetrics table is required. This can be achieved through a resource’s diagnostic settings. For detailed instructions, refer to Azure Monitor Essentials: Diagnostic Settings: https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings#metrics\n\nInstallation and Configuration:\nThis dashboard requires the JSON API Grafana plugin and a configured data source for Azure Monitor Baseline Alerts. Follow these steps to install and configure the JSON API plugin:\n\n1. Navigate to Connections->Connect Data.\n2. Search for “JSON API” and then select the JSON API data source.\n3. Install the plugin if it is not already installed.\n4. On the JSON API plugin page, click “Create a JSON API data source\".\n5. On the create JSON API page, give it the name “AMBA” and for the URL, give it the value: https://raw.githubusercontent.com/Azure/azure-monitor-baseline-alerts/main/visualizations/grafana/infra-monitoring-amba-thresholds.json \n6. Click the Save & test button. You should see a green checkbox and Success message if configured correctly.\n\nThis is one of a collection of dashboards linked together via dashboard links and the \"azure-infra-monitor\" tag. Other dashboards in the collection include:\nAzure / Infrastructure / Apps Monitoring\nAzure / Infrastructure / Storage and Key Vaults Monitoring\nAzure / Infrastructure / Compute Monitoring\nAzure / Infrastructure / Data Monitoring\n\nThe other dashboards in this collection can be found in the Azure Monitor Team Grafana library here: https://grafana.com/orgs/azuremonitorteam/dashboards. Once imported, you will be able to access these dashboards using the Azure Infra Monitoring Dashboards tab. ", "editable": true, "id": null, "links": [ { "asDropdown": true, "icon": "external link", "includeVars": false, "keepTime": false, "tags": ["azure-infra-monitor"], "targetBlank": false, "title": "Azure Infra Monitoring Dashboards", "tooltip": "", "type": "dashboards", "url": "" } ], "liveNow": true, "panels": [ { "datasource": { "type": "datasource", "uid": "grafana" }, "gridPos": { "h": 5, "w": 12, "x": 0, "y": 0 }, "id": 1, "options": { "code": { "language": "plaintext", "showLineNumbers": false, "showMiniMap": false }, "content": "<p style=\"font-size:24px;color:rgb(87, 148, 242);\">Azure Infrastructure Monitoring Dashboard (Networking)</p>\r\n\r\nSelect a data source, workspace scope, workspace(s) and resource scope. \r\nExamine the key performance indicators for your resources by expanding the row for a resource type. \r\nRecommended KPIs and thresholds used in this dashboard come from [Azure Monitor Baseline Alerts](https://azure.github.io/azure-monitor-baseline-alerts/). \r\nSee dashboard description for more details on linking to other Infrastructure Monitor dashboards.\r\n", "mode": "markdown" }, "transparent": true, "type": "text" }, { "datasource": { "type": "datasource", "uid": "grafana" }, "gridPos": { "h": 5, "w": 12, "x": 12, "y": 0 }, "id": 90, "options": { "code": { "language": "plaintext", "showLineNumbers": false, "showMiniMap": false }, "content": "<br>\r\n\r\nKey:\r\n- Green\\Healthy - None of the resources of that resource type have KPIs that are exceeding thresholds.\r\n- Yellow\\Warning - At least one resource of that resource type has one KPI exceeding a threshold.\r\n- Red\\Unhealthy - At least one resource of that resource type has two or more KPIs exceeding a threshold.", "mode": "markdown" }, "transparent": true, "type": "text" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 0, "y": 5 }, "id": 36, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/loadbalancers/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('UsedSnatPorts', 'DipAvailability', 'VipAvailability')\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'UsedSnatPorts'),\r\n kpi2 = avgif(Average, MetricName == 'DipAvailability'),\r\n kpi3 = avgif(Average, MetricName == 'VipAvailability') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3) \r\n|extend health1 = iff(kpi1>$amba_lb_UsedSNATPorts, 1, 0)\r\n|extend health2 = iff(kpi2<$amba_lb_DipAvailability, 1, 0)\r\n|extend health3 = iff(kpi3<$amba_lb_VipAvailability, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "azureMonitor": { "allowedTimeGrainsMs": [], "timeGrain": "auto" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Load Balancers", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 3, "y": 5 }, "id": 41, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/applicationgateways/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('UnhealthyHostCount', 'FailedRequests', 'HealthyHostCount')\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'UnhealthyHostCount'),\r\n kpi2 = sumif(Total, MetricName == 'FailedRequests'),\r\n kpi3 = avgif(Average, MetricName == 'HealthyHostCount') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3) \r\n|extend health1 = iff(kpi1>=$amba_appgw_UnhealthyHostCount, 1, 0)\r\n|extend health2 = iff(kpi2>$amba_appgw_FailedRequests, 1, 0)\r\n|extend health3 = iff(kpi3<=$amba_appgw_HealthyHostCount, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Application Gateways", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 6, "y": 5 }, "id": 50, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/publicipaddresses/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('VipAvailability', 'IfUnderDDoSAttack', 'PacketsInDDoS')\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'VipAvailability'),\r\n kpi2 = avgif(Maximum, MetricName == 'IfUnderDDoSAttack'),\r\n kpi3 = avgif(Total, MetricName == 'PacketsInDDoS') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2)\r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3)\r\n|extend health1 = iff(kpi1<$amba_ip_VipAvailability, 1, 0)\r\n|extend health2 = iff(kpi2>$amba_ip_IfUnderDDoSAttack, 1, 0)\r\n|extend health3 = iff(kpi3>$amba_ip_PacketsInDDoS, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Public IPs", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 9, "y": 5 }, "id": 54, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/virtualnetworks/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('IfUnderDDoSAttack', 'PacketsInDDoS', 'PacketsForwardedDDoS')\r\n| summarize\r\n kpi1 = avgif(Maximum, MetricName == 'IfUnderDDoSAttack'),\r\n kpi2 = avgif(Maximum, MetricName == 'PacketsInDDoS'),\r\n kpi3 = avgif(Maximum, MetricName == 'PacketsForwardedDDoS') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3)\r\n|extend health1 = iff(kpi1>$amba_vnet_IfUnderDDoSAttack, 1, 0)\r\n|extend health2 = iff(kpi2>$amba_vnet_PacketsInDDoS, 1, 0)\r\n|extend health3 = iff(kpi3>$amba_vnet_PacketsForwardedDDoS, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Virtual Networks", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 12, "y": 5 }, "id": 68, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/expressroutecircuits/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('BgpAvailability', 'ArpAvailability', 'QosDropBitsInPerSecond', 'QosDropBitsOutPerSecond' )\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'BgpAvailability'),\r\n kpi2 = avgif(Average, MetricName == 'ArpAvailability'),\r\n kpi3 = avgif(Average, MetricName == 'QosDropBitsInPerSecond'),\r\n kpi4 = avgif(Total, MetricName == 'QosDropBitsOutPerSecond') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3) \r\n|extend kpi4 = iff(isnan(kpi4), 0.0, kpi4)\r\n|extend health1 = iff(kpi1<$amba_exprcircuit_BgpAvailability, 1, 0)\r\n|extend health2 = iff(kpi2<$amba_exprcircuit_ArpAvailability, 1, 0)\r\n|extend health3 = iff(kpi3>$amba_exprcircuit_QosDropBitsInPerSecond, 1, 0)\r\n|extend health4 = iff(kpi4>$amba_exprcircuit_QosDropBitsOutPerSecond, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend h4color = iff(tobool(health4), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3 + health4\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc\r\n", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "ExpressRoute Circuits", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "h4color": true, "health1": true, "health2": true, "health3": true, "health4": true, "kpi1": true, "kpi2": true, "kpi3": true, "kpi4": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 0, "y": 8 }, "id": 46, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/trafficmanagerprofiles/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('ProbeAgentCurrentEndpointStateByProfileResourceId', 'QpsByEndpoint')\r\n| summarize\r\n kpi1 = avgif(Maximum, MetricName == 'ProbeAgentCurrentEndpointStateByProfileResourceId'),\r\n kpi2 = avgif(Total, MetricName == 'QpsByEndpoint') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend health1 = iff(kpi1<=$amba_tm_PACESByPR, 1, 0)\r\n|extend health2 = iff(kpi2<=$amba_tm_QpsByEndpoint, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Traffic Managers", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 3, "y": 8 }, "id": 53, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.cdn/profiles/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('TotalLatency', 'RequestCount', 'OriginHealthPercentage')\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'TotalLatency'),\r\n kpi2 = avgif(Average, MetricName == 'RequestCount'),\r\n kpi3 = avgif(Average, MetricName == 'OriginHealthPercentage')*100 by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3)\r\n|extend health1 = iff(kpi1>$amba_fd_TotalLatency, 1, 0)\r\n|extend health2 = iff(kpi2<$amba_fd_RequestCount, 1, 0)\r\n|extend health3 = iff(kpi3<$amba_fd_OriginHealthPercentage, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Front Doors", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 6, "y": 8 }, "id": 59, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/azurefirewalls/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('FirewallHealth', 'SNATPortUtilization') \r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'FirewallHealth'),\r\n kpi2 = avgif(Average, MetricName == 'SNATPortUtilization') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2)\r\n|extend health1 = iff(kpi1<$amba_fw_FirewallHealth, 1, 0)\r\n|extend health2 = iff(kpi2>$amba_fw_SNATPortUtilization, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "Firewalls", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 9, "y": 8 }, "id": 57, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/virtualnetworkgateways/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('TunnelAverageBandwidth', 'TunnelEgressBytes', 'TunnelIngressBytes' )\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'TunnelAverageBandwidth'),\r\n kpi2 = avgif(Average, MetricName == 'TunnelEgressBytes'),\r\n kpi3 = avgif(Total, MetricName == 'TunnelIngressBytes') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3)\r\n|extend health1 = iff(kpi1<$amba_vnetgw_TunnelAverageBandwidth, 1, 0)\r\n|extend health2 = iff(kpi2<=$amba_vnetgw_TunnelEgressBytes, 1, 0)\r\n|extend health3 = iff(kpi3<=$amba_vnetgw_TunnelIngressBytes, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "VPN Gateways", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "links": [], "mappings": [ { "options": { "0": { "index": 0, "text": "Healthy" }, "1": { "index": 1, "text": "Warning" } }, "type": "value" }, { "options": { "from": 2, "result": { "index": 2, "text": "Unhealthy" }, "to": 3 }, "type": "range" } ], "max": 3, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 3, "w": 3, "x": 12, "y": 8 }, "id": 66, "options": { "colorMode": "background_solid", "graphMode": "none", "justifyMode": "auto", "orientation": "auto", "reduceOptions": { "calcs": ["max"], "fields": "", "values": false }, "showPercentChange": false, "textMode": "auto", "wideLayout": true }, "targets": [ { "azureLogAnalytics": { "dashboardTime": true, "query": "AzureMetrics\r\n| where _ResourceId has '/microsoft.network/virtualnetworkgateways/'\r\n| where SubscriptionId has_any ($subsRESScope)\r\n| where MetricName in('ExpressRouteGatewayCpuUtilization', 'ExpressRouteGatewayBitsPerSecond', 'ExpressRouteGatewayPacketsPerSecond' )\r\n| summarize\r\n kpi1 = avgif(Average, MetricName == 'ExpressRouteGatewayCpuUtilization'),\r\n kpi2 = avgif(Average, MetricName == 'ExpressRouteGatewayBitsPerSecond'),\r\n kpi3 = avgif(Total, MetricName == 'ExpressRouteGatewayPacketsPerSecond') by _ResourceId, Resource\r\n|extend kpi1 = iff(isnan(kpi1), 0.0, kpi1)\r\n|extend kpi2 = iff(isnan(kpi2), 0.0, kpi2) \r\n|extend kpi3 = iff(isnan(kpi3), 0.0, kpi3)\r\n|extend health1 = iff(kpi1>$amba_vnetgw_ExpressRouteGatewayCpuUtil, 1, 0)\r\n|extend health2 = iff(kpi2<=$amba_vnetgw_ExpressRouteGatewayBitsPerSec, 1, 0)\r\n|extend health3 = iff(kpi3<=$amba_vnetgw_ExpressRouteGatewayPacketsPerSec, 1, 0)\r\n|extend h1color = iff(tobool(health1), $unhealthy_color, $healthy_color)\r\n|extend h2color = iff(tobool(health2), $unhealthy_color, $healthy_color)\r\n|extend h3color = iff(tobool(health3), $unhealthy_color, $healthy_color)\r\n|extend health = health1 + health2 + health3\r\n|extend hcolor = iff(health>1, $unhealthy_color, iff(health==1, $warning_color, $healthy_color))\r\n| order by health desc", "resources": ["$laws"], "resultFormat": "logs", "timeColumn": "TimeGenerated" }, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "queryType": "Azure Log Analytics", "refId": "A", "subscriptions": ["ebb79bc0-aa86-44a7-8111-cabbe0c43993"] } ], "title": "ExpressRoute Gateways", "transformations": [ { "id": "organize", "options": { "excludeByName": { "A": false, "Resource": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": true }, "indexByName": {}, "renameByName": { "A": " ", "health": " " } } }, { "id": "configFromData", "options": { "configRefId": "A", "mappings": [ { "fieldName": "hcolor", "handlerKey": "color", "reducerId": "firstNotNull" } ] } } ], "transparent": true, "type": "stat" }, { "datasource": { "type": "datasource", "uid": "grafana" }, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 11 }, "id": 25, "options": { "code": { "language": "plaintext", "showLineNumbers": false, "showMiniMap": false }, "content": "", "mode": "markdown" }, "transparent": true, "type": "text" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 12 }, "id": 35, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 5000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 12 }, "id": 37, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 36, "refId": "A" } ], "title": "Load Balancer Used SNAT Ports", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 12 }, "id": 38, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 36, "refId": "A" } ], "title": "Load Balancer Health Probe Status", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 12 }, "id": 39, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 36, "refId": "A" } ], "title": "Load Balancer Data Path Availability", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Load Balancers", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 13 }, "id": 45, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 25, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 13 }, "id": 47, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 46, "refId": "A" } ], "title": "Traffic Manager Endpoint Status by Endpoint", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 25, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 13 }, "id": 48, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 46, "refId": "A" } ], "title": "Traffic Manager Queries by Endpoint Returned", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Traffic Managers", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 14 }, "id": 40, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 25, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 14 }, "id": 42, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 41, "refId": "A" } ], "title": "Application Gateway Unhealthy Host Count", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 500, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 14 }, "id": 43, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 41, "refId": "A" } ], "title": "Application Gateway Failed Requests", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 25, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 14 }, "id": 44, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 41, "refId": "A" } ], "title": "Application Gateway Healthy Host Count", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Application Gateways", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 15 }, "id": 52, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 500, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 16 }, "id": 69, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 53, "refId": "A" } ], "title": "Front Door Total Latency", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 500, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 16 }, "id": 70, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 53, "refId": "A" } ], "title": "Front Door Request Count", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080", "value": null } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 16 }, "id": 71, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 53, "refId": "A" } ], "title": "Front Door Origin Health Percentage", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Front Doors", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 16 }, "id": 49, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 16 }, "id": 72, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 50, "refId": "A" } ], "title": "Public IP Availability", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": false, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 1, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 16 }, "id": 95, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 50, "refId": "A" } ], "title": "Public IP Under DDoS Attack", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 50000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 16 }, "id": 96, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 50, "refId": "A" } ], "title": "Public IP Inbound Packets DDoS", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Public IPs", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 17 }, "id": 58, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 17 }, "id": 78, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 59, "refId": "A" } ], "title": "Firewall Health", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": false, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "displayName": "${__field.displayName}", "mappings": [], "max": 1000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" }, { "color": "dark-green", "value": 0 }, { "color": "dark-red", "value": 80 } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 17 }, "id": 79, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 59, "refId": "A" } ], "title": "Firewall SNAT Port Utilization", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Firewalls", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 18 }, "id": 55, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 1, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 18 }, "id": 34, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 54, "refId": "A" } ], "title": "Virtual Network Under DDoS Attack", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": false, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 50000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 18 }, "id": 73, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 54, "refId": "A" } ], "title": "Virtual Network Inbound Packets DDoS", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 5000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 18 }, "id": 74, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 54, "refId": "A" } ], "title": "Virtual Network Packets Forwarded DDoS", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "Virtual Networks", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 19 }, "id": 56, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 19 }, "id": 75, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 57, "refId": "A" } ], "title": "VPN Gateway Tunnel Bandwidth", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": false, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 8000000000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 19 }, "id": 76, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 57, "refId": "A" } ], "title": "VPN Gateway Tunnel Egress Bytes", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 8000000000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 19 }, "id": 77, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 57, "refId": "A" } ], "title": "VPN Gateway Tunnel Ingress Bytes", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "VPN Gateways", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 20 }, "id": 67, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 20 }, "id": 87, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 68, "refId": "A" } ], "title": "Express Route Circuit BGP Availability", "transformations": [ { "id": "organize", "options": { "excludeByName": { "Health": true, "_ResourceId": true, "h1color": false, "h2color": true, "h3color": true, "h4color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "health4": true, "kpi1": false, "kpi2": true, "kpi3": true, "kpi4": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 20 }, "id": 97, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 68, "refId": "A" } ], "title": "Express Route Circuit ARP Availability", "transformations": [ { "id": "organize", "options": { "excludeByName": { "Health": true, "_ResourceId": true, "h1color": true, "h3color": true, "h4color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "health4": true, "kpi1": true, "kpi2": false, "kpi3": true, "kpi4": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 10000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 20 }, "id": 88, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 68, "refId": "A" } ], "title": "Express Route QoS Drop Bits In Per Second", "transformations": [ { "id": "organize", "options": { "excludeByName": { "Health": true, "_ResourceId": true, "h1color": true, "h2color": true, "h4color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "health4": true, "kpi1": true, "kpi2": true, "kpi3": false, "kpi4": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "description": "", "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 10000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 18, "y": 20 }, "id": 89, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 68, "refId": "A" } ], "title": "Express Route QoS Drop Bits Out Per Second", "transformations": [ { "id": "organize", "options": { "excludeByName": { "Health": true, "_ResourceId": true, "h1color": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "health4": true, "kpi1": true, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi4" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi4", "handlerKey": "field.value" }, { "fieldName": "h4color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "ExpressRoute Circuits", "type": "row" }, { "collapsed": true, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 21 }, "id": 65, "panels": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 0, "y": 22 }, "id": 84, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 66, "refId": "A" } ], "title": "Express Route Gateway CPU Utilization", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h2color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": false, "kpi2": true, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": true, "field": "kpi1" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi1", "handlerKey": "field.value" }, { "fieldName": "h1color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 6, "y": 22 }, "id": 85, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 66, "refId": "A" } ], "title": "Express Route Gateway Bits Per Second", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h3color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": false, "kpi3": true }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi2" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi2", "handlerKey": "field.value" }, { "fieldName": "h2color", "handlerKey": "color" } ] } } ], "type": "bargauge" }, { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "fieldConfig": { "defaults": { "color": { "mode": "fixed" }, "displayName": "${__field.displayName}", "mappings": [], "max": 100000, "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "#808080" } ] } }, "overrides": [] }, "gridPos": { "h": 12, "w": 6, "x": 12, "y": 22 }, "id": 86, "options": { "displayMode": "gradient", "maxVizHeight": 300, "minVizHeight": 10, "minVizWidth": 0, "namePlacement": "auto", "orientation": "horizontal", "reduceOptions": { "calcs": ["lastNotNull"], "fields": "", "values": true }, "showUnfilled": true, "sizing": "auto", "valueMode": "color" }, "targets": [ { "datasource": { "type": "datasource", "uid": "-- Dashboard --" }, "panelId": 66, "refId": "A" } ], "title": "Express Route Gateway Packets Per Second", "transformations": [ { "id": "organize", "options": { "excludeByName": { "_ResourceId": true, "h1color": true, "h2color": true, "hcolor": true, "health": true, "health1": true, "health2": true, "health3": true, "kpi1": true, "kpi2": true, "kpi3": false }, "includeByName": {}, "indexByName": {}, "renameByName": {} } }, { "id": "sortBy", "options": { "fields": {}, "sort": [ { "desc": false, "field": "kpi3" } ] } }, { "id": "rowsToFields", "options": { "mappings": [ { "fieldName": "Resource", "handlerKey": "field.name" }, { "fieldName": "kpi3", "handlerKey": "field.value" }, { "fieldName": "h3color", "handlerKey": "color" } ] } } ], "type": "bargauge" } ], "title": "ExpressRoute Gateway", "type": "row" } ], "refresh": "", "schemaVersion": 39, "tags": ["azure-infra-monitor"], "templating": { "list": [ { "current": {}, "hide": 0, "includeAll": false, "label": "Datasource", "multi": false, "name": "ds", "options": [], "query": "grafana-azure-monitor-datasource", "queryValue": "", "refresh": 1, "regex": "", "skipUrlSync": false, "type": "datasource" }, { "current": {}, "hide": 2, "includeAll": false, "label": "Azure Monitor Baseline Alerts", "multi": false, "name": "amba", "options": [], "query": "marcusolsson-json-datasource", "refresh": 1, "regex": "", "skipUrlSync": false, "type": "datasource" }, { "current": {}, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "definition": "", "description": "Subscriptions used to filter Log Analytics Workspaces variable.", "hide": 0, "includeAll": false, "label": "Workspace Scope", "multi": true, "name": "subsWSScope", "options": [], "query": { "azureLogAnalytics": { "query": "", "resources": [] }, "queryType": "Azure Subscriptions", "refId": "A" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 5, "type": "query" }, { "current": {}, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "definition": "", "description": "Log Analytics Workspaces in scope.", "hide": 0, "includeAll": false, "label": "Workspaces", "multi": true, "name": "laws", "options": [], "query": { "azureLogAnalytics": { "query": "", "resources": [] }, "azureResourceGraph": { "query": "resources\r\n| where type == \"microsoft.operationalinsights/workspaces\"\r\n| project value=['id'], text=['name']" }, "queryType": "Azure Resource Graph", "refId": "A", "subscriptions": ["$subsWSScope"] }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "grafana-azure-monitor-datasource", "uid": "${ds}" }, "definition": "", "description": "Subscriptions used to filter resources returned from queries.", "hide": 0, "includeAll": false, "label": "Resource Scope", "multi": true, "name": "subsRESScope", "options": [], "query": { "azureLogAnalytics": { "query": "", "resources": [] }, "queryType": "Azure Subscriptions", "refId": "A" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 5, "type": "query" }, { "current": { "selected": false, "text": "\"rgb(45,161,55)\"", "value": "\"rgb(45,161,55)\"" }, "description": "Color used when KPIs are below thresholds.", "hide": 2, "includeAll": false, "multi": false, "name": "healthy_color", "options": [ { "selected": true, "text": "\"rgb(45,161,55)\"", "value": "\"rgb(45,161,55)\"" } ], "query": "\"rgb(45\\,161\\,55)\"", "skipUrlSync": false, "type": "custom" }, { "current": { "selected": false, "text": "\"rgb(222,210,38)\"", "value": "\"rgb(222,210,38)\"" }, "description": "Color used when one KPI exceeds threshold", "hide": 2, "includeAll": false, "multi": false, "name": "warning_color", "options": [ { "selected": true, "text": "\"rgb(222,210,38)\"", "value": "\"rgb(222,210,38)\"" } ], "query": "\"rgb(222\\,210\\,38)\"", "skipUrlSync": false, "type": "custom" }, { "current": { "selected": false, "text": "\"rgb(255,31,46)\"", "value": "\"rgb(255,31,46)\"" }, "description": "Color used when KPIs exceed thresholds", "hide": 2, "includeAll": false, "multi": false, "name": "unhealthy_color", "options": [ { "selected": true, "text": "\"rgb(255,31,46)\"", "value": "\"rgb(255,31,46)\"" } ], "query": "\"rgb(255\\,31\\,46)\"", "skipUrlSync": false, "type": "custom" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/loadBalancers\".\"DipAvailability\"", "hide": 2, "includeAll": false, "multi": false, "name": "amba_lb_DipAvailability", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/loadBalancers\".\"DipAvailability\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/loadBalancers\".\"VipAvailability\"", "hide": 2, "includeAll": false, "multi": false, "name": "amba_lb_VipAvailability", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/loadBalancers\".\"VipAvailability\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/loadBalancers\".\"UsedSNATPorts\"", "hide": 2, "includeAll": false, "multi": false, "name": "amba_lb_UsedSNATPorts", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/loadBalancers\".\"UsedSNATPorts\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/trafficmanagerprofiles\".\"ProbeAgentCurrentEndpointStateByProfileResourceId\"", "description": "ProbeAgentCurrentEndpointStateByProfileResourceId", "hide": 2, "includeAll": false, "multi": false, "name": "amba_tm_PACESByPR", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/trafficmanagerprofiles\".\"ProbeAgentCurrentEndpointStateByProfileResourceId\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/trafficmanagerprofiles\".\"QpsByEndpoint\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_tm_QpsByEndpoint", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/trafficmanagerprofiles\".\"QpsByEndpoint\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/applicationGateways\".\"UnhealthyHostCount\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_appgw_UnhealthyHostCount", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/applicationGateways\".\"UnhealthyHostCount\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/applicationGateways\".\"FailedRequests\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_appgw_FailedRequests", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/applicationGateways\".\"FailedRequests\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/applicationGateways\".\"HealthyHostCount\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_appgw_HealthyHostCount", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/applicationGateways\".\"HealthyHostCount\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.CDN/profiles\".\"TotalLatency\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_fd_TotalLatency", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.CDN/profiles\".\"TotalLatency\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.CDN/profiles\".\"RequestCount\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_fd_RequestCount", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.CDN/profiles\".\"RequestCount\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.CDN/profiles\".\"OriginHealthPercentage\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_fd_OriginHealthPercentage", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.CDN/profiles\".\"OriginHealthPercentage\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/publicIPAddresses\".\"IfUnderDDoSAttack\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_ip_IfUnderDDoSAttack", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/publicIPAddresses\".\"IfUnderDDoSAttack\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/publicIPAddresses\".\"PacketsInDDoS\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_ip_PacketsInDDoS", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/publicIPAddresses\".\"PacketsInDDoS\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/publicIPAddresses\".\"VipAvailability\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_ip_VipAvailability", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/publicIPAddresses\".\"VipAvailability\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/azureFirewalls\".\"FirewallHealth\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_fw_FirewallHealth", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/azureFirewalls\".\"FirewallHealth\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/azureFirewalls\".\"SNATPortUtilization\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_fw_SNATPortUtilization", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/azureFirewalls\".\"SNATPortUtilization\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworks\".\"IfUnderDDoSAttack\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnet_IfUnderDDoSAttack", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworks\".\"IfUnderDDoSAttack\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworks\".\"PacketsInDDoS\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnet_PacketsInDDoS", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworks\".\"PacketsInDDoS\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworks\".\"PacketsForwardedDDoS\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnet_PacketsForwardedDDoS", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworks\".\"PacketsForwardedDDoS\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelAverageBandwidth\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_TunnelAverageBandwidth", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelAverageBandwidth\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelEgressBytes\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_TunnelEgressBytes", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelEgressBytes\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelIngressBytes\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_TunnelIngressBytes", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"TunnelIngressBytes\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayCpuUtilization\"", "description": "ExpressRouteGatewayCpuUtilization", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_ExpressRouteGatewayCpuUtil", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayCpuUtilization\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayBitsPerSecond\"", "description": "ExpressRouteGatewayBitsPerSecond", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_ExpressRouteGatewayBitsPerSec", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayBitsPerSecond\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayPacketsPerSecond\"", "description": "ExpressRouteGatewayBitsPerSecond", "hide": 2, "includeAll": false, "multi": false, "name": "amba_vnetgw_ExpressRouteGatewayPacketsPerSec", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/virtualNetworkGateways\".\"ExpressRouteGatewayPacketsPerSecond\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/expressRouteCircuits\".\"ArpAvailability\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_exprcircuit_ArpAvailability", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/expressRouteCircuits\".\"ArpAvailability\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/expressRouteCircuits\".\"BgpAvailability\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_exprcircuit_BgpAvailability", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/expressRouteCircuits\".\"BgpAvailability\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/expressRouteCircuits\".\"QosDropBitsInPerSecond\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_exprcircuit_QosDropBitsInPerSecond", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/expressRouteCircuits\".\"QosDropBitsInPerSecond\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" }, { "current": {}, "datasource": { "type": "marcusolsson-json-datasource", "uid": "${amba}" }, "definition": "\"Microsoft.Network/expressRouteCircuits\".\"QosDropBitsOutPerSecond\"", "description": "", "hide": 2, "includeAll": false, "multi": false, "name": "amba_exprcircuit_QosDropBitsOutPerSecond", "options": [], "query": { "cacheDurationSeconds": 300, "fields": [ { "jsonPath": "\"Microsoft.Network/expressRouteCircuits\".\"QosDropBitsOutPerSecond\"", "language": "jsonata" } ], "method": "GET", "queryParams": "", "urlPath": "" }, "refresh": 1, "regex": "", "skipUrlSync": false, "sort": 0, "type": "query" } ] }, "time": { "from": "now-6h", "to": "now" }, "timepicker": {}, "timezone": "", "title": "Azure / Infrastructure / Network Monitoring", "version": 28 }
.
Edit
..
Edit
adx.json
Edit
appInsights.json
Edit
appInsightsFailureDependencies.json
Edit
appInsightsFailureExceptions.json
Edit
appInsightsFailureOperations.json
Edit
appInsightsGeoMap.json
Edit
appInsightsPerfDependencies.json
Edit
appInsightsPerfOperations.json
Edit
arg.json
Edit
azureInfraApps.json
Edit
azureInfraCompute.json
Edit
azureInfraData.json
Edit
azureInfraNetwork.json
Edit
azureInfraStorageVaults.json
Edit
containerInsightsSyslog.json
Edit
cosmosdb.json
Edit
keyvault.json
Edit
networkInsightsDashboard.json
Edit
postgresFlexibleServer.json
Edit
sqldb.json
Edit
storage.json
Edit
v1Alerts.json
Edit
vMInsightsRG.json
Edit
vMInsightsWorkspace.json
Edit