How does Application Insights work?

You install a small instrumentation package in your application, and set up an Application Insights resource in the Microsoft Azure portal. The instrumentation monitors your app and sends telemetry data to the portal. (The application can run anywhere – it doesn’t have to be hosted in Azure.) You can instrument not only… Continue reading

What does Application Insights monitor?

Application Insights is aimed at the development team, to help you understand how your app is performing and how it’s being used. It monitors: Request rates, response times, and failure rates – Find out which pages are most popular, at what times of day, and where your users are. See which pages… Continue reading

What is Application Insights?

Application Insights is an extensible Application Performance Management (APM) service for web developers on multiple platforms. Use it to monitor your live web application. It will automatically detect performance anomalies. It includes powerful analytics tools to help you diagnose issues and to understand what users actually do with your app…. Continue reading

Use of Application Insights

Monitor Install Application Insights in your app, set up availability web tests, and: Set up a dashboard for your team room to keep an eye on load, responsiveness, and the performance of your dependencies, page loads, and AJAX calls. Discover which are the slowest and most failing requests. Watch Live Stream… Continue reading

Sql Server Interview Questions and Answers

1) SQL Server query to split the Field into 2 Column. This query the developer can use when the name consists of numeric value like Ram1, Ram2 SELECT Left(Lastname, 3) As characters, Right(Lastname, 1) As numbers         FROM   [Amatya].[dbo].[tblUsers] Note – First 3 Character will be… Continue reading

Top Sql Server Interview Questions and their Answers

1)  How to create an empty table emp1 with same structure as emp?  Create table emp1 as select * from emp where 1=2; 2)  How to find the Max Salary from each department? Select D.DepName, MAX(E.Salary) as Salary from tbl_Emp E        Inner Join tbl_Department D on E.Fk_DepId… Continue reading

What is IIS Metabase

IIS Metabase is a structure where IIS configuration settings are stored. The metabase configuration and schema for IIS 4.0 and IIS 5.0 were stored in a binary file, but from IIS6.0 the configuration and setting is stored in single binary file (MetaBase.bin), with plain text, Extensible Markup Language (XML)-formatted files… Continue reading

How to Set Up SSL on a Server

In IIS Manager, expand the local computer, and then expand the Web Sites folder. Right-click the Web site or file that you want to protect with SSL, and then click Properties. Under Web site identification, click Advanced. In the Advanced Web site identification box, under Multiple identities for this Web… Continue reading

What is Web Gardening? How would using it affect a design?

The Web Garden Model: The Web garden model is configurable through the section of the machine.config file. Notice that the section is the only configuration section that cannot be placed in an application-specific web.config file. This means that the Web garden mode applies to all applications running on the machine…. Continue reading

Can we handle the error and redirect to some pages using web.config?

Yes, we can do this, but to handle errors, we must know the error codes; only then we can take the user to a proper error message page, else it may confuse the user. CustomErrors Configuration section in web.config file: <customErrors mode=”RemoteOnly” defaultRedirect=”Customerror.aspx”> <error statusCode=”404″ redirect=”Notfound.aspx” /> </customErrors> If mode… Continue reading