Reputation: 1171
I'm using Application Insights to monitor my app, and I'm using Grafana to show some of that data and I'd like to link back from Grafana to Application Insights when I find a problematic request. I'd like to open the End to End transaction page for a given Operation Id, but can't find a way to do it.
If I click on the "Copy Link" button on said transaction page it gives me a URL that encodes a different ID, the eventId, that is encoded into a URL of the type https://portal.azure.com/#blade/AppInsightsExtension/DetailsV2Blade/DataModel/... and I can't work out how to get that event id.
So, given a resource id and an operation id, can I generate a URL to open directly to the end to end transaction details page?
Upvotes: 1
Views: 61
Reputation: 618
I think I'm trying to do something similar and may have found what you're looking for. I'm using the AppRequests table, and found it has a hidden column _ItemId that is the eventId used in the end-to-end transaction URL.
Upvotes: 0