How to use performance monitor to diagnose bottlenecks in your application? - DOT.NET

How to use performance monitor to diagnose bottlenecks in your application?

Monitor is a tool built to assist you in diagnosing the problem.
Type ‘perfmon’ in command prompt to access Performance Monitor

The counters, sampling intervals, etc can be used to monitor the performance.

A baseline should be established so that critical reference points, changes and trends can be observed and identified.

Results can be made more readable by removing all the distracting sample noise so that the graphical view of trend lines is not blurred. This can be done using buckets - a vertical line, indicating the minimum, average, and maximum of the sample points in the bucket.

It should be noted that the bottlenecks can be caused due to over utilization of physical disk, memory, process, CPU, and network.
Different types of configuration files provided by .NET framework - DOT.NET
The different types of configuration files provided by .NET framework are: enterprisesec.config which configures the enterprise-level security policies...
What is AppSetting section in Web.Config file? - DOT.NET
The element of a web.config file where connection strings, server names, file paths...
What is Dataset object? - DOT.NET
DataSet object can not directly interact with Database. A DataAdapter object needs to be created to refer to the connection that is created....
Post your comment