On the landing page of the web app service, you will find some of the metrics in graphs. These graphs represent the various different sets of information that can be useful when we want to monitor our application's health.
The default metrics provided by Azure are as follows:
- HTTP 5xx error: This tells us the number of server errors reported .
- Data in/out: These provide details of the number of bytes that are transferred to and from the server.
- Request: This provides the details of the number of requests that have come in for the web application in a period of time.
- Average response time: Here, we get information about the response time of our server for the request. This metric allows us to determine how fast ...