Reputation: 62722
We have some telemetry in a certain App Insights bucket in Azure. We present it as a dashboard there. However, being in Azure it is not visible to the teams in an obvious way.
We use Azure DevOps Server 2019 (on prem). Is it possible to surface App Insights data in Azure DevOps Server 2019 in a form of an Azure DevOps dashboard?
EDIT 1
Showing just the metrics
chart is not sufficient for us. Our dashboards are based on Kusto queries into customEvents
.
Upvotes: 0
Views: 714
Reputation: 35119
You could try to use the “Azure Application Insights Widgets” extension in Azure Devops Server.
This extension contains two widgets: “Azure Application Insights Chart Widget “ and “App Insights” Widget.
These two widgets can call ‘Metrics’ in APP insights.
Then they can use these information to generate graphs or display the obtained data.
Hope this helps.
Upvotes: 0
Reputation: 222532
It is possible but not straight forward, you might need to use the APIs(both Azure Devops API and App Insights API) to get the data from AppInsights and then create those widgets.
Upvotes: 0