Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application Insights disable GET requests every 5 min

We have a problem with Application Insights. There are a lot of requests every 5 min to our App Service. All alerts are disabled. Does anyone know what this is and how to disable the logging for that requests?

P.S. He think that this is ResourceHealth monitor, but how to disable it then?

like image 881
Denys Demchenko Avatar asked Dec 19 '22 10:12

Denys Demchenko


2 Answers

You probably use the "Always On" feature within your application settings. Azure is invoking the root of your site every 5 minutes to keep your app warm. I doubt there is a way to disabling these loggings.

like image 133
Martin Brandl Avatar answered Mar 05 '23 04:03

Martin Brandl


With application insights telemetryprocessor you can filter the heartbeat requests (or any other kind of requests) by manually capturing the telemetry. Have a look at this

like image 25
ManishKG Avatar answered Mar 05 '23 04:03

ManishKG