Reputation: 61
I have deployed a .Net Core API to Azure as an App Service.
I have set the Always on feature to true.
When I log the requests, I see that Azure Always on requests are coming every 5 minutes.
My usage with API is HTTPS but Always on requests are sending with HTTP. I don't know if this is the case
For the first request, it is sometimes 10 seconds, but after the first request, it is around 100ms.
What is missing here?
Upvotes: 0
Views: 736
Reputation: 15561
There are quite a few reasons why this might be the case:
Add some logging to your application, maybe enable Application Insights if you haven't done so already and go try to find the culprit.
Upvotes: 1