Reputation: 148
I'm working on a React Native project and would like to integrate Azure Application Insights.
I have followed the official documentation provided here: https://learn.microsoft.com/en-us/azure/azure-monitor/app/javascript-react-native-plugin
While Application map displays request counts with relevant nodes further details on insights are not visible on clicking on the counts.
Also when it comes to Performance, Operations does not display any data while in Dependencies does.
Upvotes: 0
Views: 1594
Reputation: 1227
Thank you ZakiMa. I am posting your discussion as answer as it will benefit other community users.
Operations are not visible because for Browser telemetry maps to PageViews. But for Single Page Apps, whole app will be represented as one PageView. Application Map doesn't show any transitions as there is no data for main node.
Upvotes: 0