Request for Assistance with App Service Performance – High Time in ManagedPipelineHandler

SK Tang 0 Reputation points
2025-06-24T02:31:34.4266667+00:00

Experiencing performance issues with an Azure App Service. Analysis revealed 4 slow request(s) where the module consuming the most time is:

ManagedPipelineHandler (57.1%)

The diagnostic message indicates:

"To troubleshoot performance issues or to identify the root cause of the issue, you need to collect additional data because, most likely, the issue lies within the application layer. App Services doesn't collect application-level telemetry to identify slowness issues in your application code."

Looking for guidance on how to effectively troubleshoot this issue.

Developer technologies | VB
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. mudinaman143 20 Reputation points
    2025-06-24T02:36:41.5266667+00:00

    ✅ Solution:

    1. Ensure your SMTP client is configured correctly:
      
         using System.Net.Mail;
      
         var client = new SmtpClient("smtp.yourserver.com");
      
         client.Port = 587; // Or 25/465 depending on your server
      
         client.Credentials = new NetworkCredential("username", "password");
      
         client.EnableSsl = true;
      
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.