Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between application insights application types

I'm using application insights for my ASP.NET website. Recently I've added several web jobs and I found that there is an ability to configure app insights integration with them. webjobs SDK documentation is saying that I need to have my Application type set to "General" in App Insights: https://github.com/Azure/azure-webjobs-sdk/wiki/Application-Insights-Integration. Currently it is set to 'ASP.NET'. I have 2 questions here:

  • What will be changed in my app insights after changing application type to 'General'. Could not google for anything related.
  • Is there any way to change app type instead of recreating app insights instance?
like image 658
Artem Drashpul Avatar asked Sep 26 '17 17:09

Artem Drashpul


People also ask

What is the difference between Azure monitor and application Insights?

Application Insights is an extension of Azure Monitor and provides Application Performance Monitoring (also known as “APM”) features. APM tools are useful to monitor applications from development, through test, and into production in the following ways: Proactively understand how an application is performing.

Does application Insights affect performance?

The Application Insights SDK and instrumentation is designed to be extremely lightweight and have minimal impact on the performance of your application.

What is Insight application?

Application Insights is an application performance management service for web applications that enables you to do all the monitoring of your website performance in Azure. It's designed to ensure you're getting optimal performance and the best in class user experience from your website.

Are application Insights deprecated?

Note: Classic Application Insights will be retired on in February 2024, which indicates that using Workspace-based Application Insights is the way forward. Based on the docs, this comes with enhanced new capabilities: Customer Managed Keys.


1 Answers

What will be changed in my app insights after changing application type to 'General'.

Application type affects what you see on the overview blade and the properties available in metric explorer. If you don't see your type of app, choose General. It means Azure will provide difference metrics for different application type. In addition, different application type need to accept the data sent by corresponding client SDK.

Is there any way to change app type instead of recreating app insights instance?

I haven't found any way to do it on Azure portal. I also tried modify it using REST API. 200 OK is returned from Azure Server but the application type is not modified successfully.

like image 158
Amor Avatar answered Sep 19 '22 13:09

Amor