Azure Application Insights KPIs
Learn about the features of Azure Application Insights and how to configure metrics for the telemetry data.
Let’s go into detail about the features of Azure Application Insights: how to get insights of
Deep insights
Let’s say we have a web application with Angular as a client at the frontend and a .Net Core server at the backend. We can have separate code snippets for both to track
Note: We have to install an SDK for the client side. In this case, we might need to install the following dependency in our
package.json
file.
@microsoft/applicationinsights-web : "~2.4.4"
Once it’s installed, we need to load the Azure Application Insights function in a separate service file and then call its respective functions where we want to trace the logs. Additionally, we can call it in the main component. It will load the data automatically, and then we can call those functions.
In the illustration below, we’ve categorized these divisions, and we can have ...