Roger Johansson
Roger Johansson

Reputation: 23214

Azure Application Insights Memory Usage

We have a site running as an Azure Website for Docker. This site uses Application Insights to reports metrics.

Now to the issue at hand. There are 3 different graphs in Azure, seemingly reporting the same thing. But with completely different values.

This image is from the diagnostics page. and seems to indicate that the app consumes very little memory (which we see locally too)

enter image description here

This image is from the Service Plan itself:

enter image description here

This final image is from the Application insights dashboard: enter image description here

All three images are for a 24h timespan. all images are from the same time.

Can anyone shed some light on what is going on here? why is one graph saying 6% and another 35-45% and yet another is all over the place.

I'm not quite sure what more context to provide here, if there is anything more I should provide, please let me know.

Upvotes: 6

Views: 5259

Answers (1)

Juan Medina
Juan Medina

Reputation: 559

I know this is a bit old but...

It seems you're seeing different graphs indeed:

The first one shows the memory of your apps only (process' memory consumption); the second one shows the memory consumption average of the plan, so it will add all native processes required by your app to run; while the third one shows the available memory average, hence the difference.

I hope this helps a bit to understand those graphs

Upvotes: 1

Related Questions