mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
Azure Monitor: Fix variable in app insights dependencies dashboard (#76717)
update performance description, fix variable in perf dependency
This commit is contained in:
parent
8ac7736c95
commit
16d0aff267
@ -57,7 +57,7 @@
|
||||
"version": ""
|
||||
}
|
||||
],
|
||||
"description": "The dashboard provides insights of Azure Apps via different metrics for app monitoring through Application Insights.",
|
||||
"description": "The dashboard provides insights of dependency performance of Azure Apps through Application Insights.",
|
||||
"editable": true,
|
||||
"id": null,
|
||||
"links": [
|
||||
@ -1773,7 +1773,7 @@
|
||||
"options": [],
|
||||
"query": {
|
||||
"azureLogAnalytics": {
|
||||
"query": "dependencies\r\n| where $__timeFilter(timestamp)\r\n| where client_Type != \"Browser\"\r\n| extend type=iff(tolower(type) == \"http (tracked component)\", \"HTTP\", type), target=tostring(split(target, \" | cid-v1\")[0])\r\n| project [\"Dependency Name\"] = strcat(type, \": \", name, \" \", target), duration\r\n| where ['Dependency Name'] in ($dependency)\r\n| top 1 by duration asc\r\n| project tostring(duration)\r\n\r\n",
|
||||
"query": "dependencies\r\n| where $__timeFilter(timestamp)\r\n| where client_Type != \"Browser\"\r\n| extend type=iff(tolower(type) == \"http (tracked component)\", \"HTTP\", type), target=tostring(split(target, \" | cid-v1\")[0])\r\n| project [\"Dependency Name\"] = strcat(type, \": \", name, \" \", target), duration\r\n| where (\"All\" in ($dependency) or [\"Dependency Name\"] in ($dependency))\r\n| top 1 by duration asc\r\n| project tostring(duration)",
|
||||
"resources": ["/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"]
|
||||
},
|
||||
"queryType": "Azure Log Analytics",
|
||||
@ -1801,7 +1801,7 @@
|
||||
"options": [],
|
||||
"query": {
|
||||
"azureLogAnalytics": {
|
||||
"query": "dependencies\r\n| where $__timeFilter(timestamp)\r\n| where client_Type != \"Browser\"\r\n| extend type=iff(tolower(type) == \"http (tracked component)\", \"HTTP\", type), target=tostring(split(target, \" | cid-v1\")[0])\r\n| project [\"Dependency Name\"] = strcat(type, \": \", name, \" \", target), duration\r\n| where ['Dependency Name'] in ($dependency)\r\n| top 1 by duration desc\r\n| project tostring(duration)\r\n\r\n",
|
||||
"query": "dependencies\r\n| where $__timeFilter(timestamp)\r\n| where client_Type != \"Browser\"\r\n| extend type=iff(tolower(type) == \"http (tracked component)\", \"HTTP\", type), target=tostring(split(target, \" | cid-v1\")[0])\r\n| project [\"Dependency Name\"] = strcat(type, \": \", name, \" \", target), duration\r\n| where (\"All\" in ($dependency) or [\"Dependency Name\"] in ($dependency))\r\n| top 1 by duration desc\r\n| project tostring(duration)",
|
||||
"resources": ["/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"]
|
||||
},
|
||||
"queryType": "Azure Log Analytics",
|
||||
|
@ -57,7 +57,7 @@
|
||||
"version": ""
|
||||
}
|
||||
],
|
||||
"description": "The dashboard provides insights of Azure Apps via different metrics for app monitoring through Application Insights.",
|
||||
"description": "The dashboard provides insights of request performance of Azure Apps through Application Insights.",
|
||||
"editable": true,
|
||||
"fiscalYearStartMonth": 0,
|
||||
"graphTooltip": 0,
|
||||
|
Loading…
Reference in New Issue
Block a user