You have a web app that is deployed to Azure.
You need to download a compressed collection of the diagnostic logs.
What should you use? downloaded as a Zip archive using Azure PowerShell or the Azure Command-Line Interface.

A.
Azure PowerShell
B.
File Transfer Protocol (FTP)
C.
Application Insights
D.
Microsoft Visual Studio
Explanation:
Diagnostic information stored to the web app file system can be accessed directly using FTP. It can also be
https://docs.microsoft.com/en-us/azure/app-service/web-sites-enable-diagnostic-log#download
According to the link supplied above either A or B.
0
2
A, B and D are correct, (Maybe is an old dump answer).
You can retrieve diagnostics logs data by using Visual Studio Server Explorer, the Site Control Management (SCM) website (also known as Kudu), the command line in Windows PowerShell or the xplat-cli, or direct download via FTP to query Table or Blob storage.
source: https://www.microsoftpressstore.com/articles/article.aspx?p=2873368
1
2
Answer is correct as download a compressed collection. other option can get the log but they are not compressed.
4
0