0

I created an Azure App Service. Deployed it via a develops pipeline.

Basically, this service is broken, and im trying to troubleshoot it.

During my investigation using the Request Diagnostics blade/tool, i learned that the request url is using HTTPS with port 80.

Does this mean i tried making an invalid request?

AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
  • Hi, @AlvinfromDiaspar, if my answer helps, would you mind accept as the answer for others to refer? – Doris Lv Nov 10 '20 at 02:54

1 Answers1

0

Here is some ways for troubleshooting web app breken:

  1. You could find out the error logs in kudu: yourwebapp.scm.azurewebsites.net/DebugConsole --> LogFiles --> eventlog.xml, which file only be created when your web app broken. enter image description here
  2. A useful tool you mentioned in your question also helps. The steps for diagnostics is: Click Availability and Performance--> click Web App Down. enter image description here enter image description here

  1. Here is a solution about troubleshooting .net-core web application broken using Diagnostic tools. As you can see, JAVA and PHP also supported. see the created Profiler Trace in kudu: yourwebapp.scm.azurewebsites.net/DebugConsole--> data--> DaaS--> logs--> yourwebapp. enter image description here
Doris Lv
  • 3,083
  • 1
  • 5
  • 14