You manage a cloud service that has a web application named WebRole1. WebRole1 writes error messages to
the Windows Event Log.
Users report receiving an error page with the following message: “Event 26 has occurred. Contact your system
administrator.”
You need to access the WebRole1 event log.
Which three actions should you perform? Each correct answer presents part of the solution.

A.
Enable verbose monitoring.
B.
Update the WebRole1 web.config file.
C.
Update the cloud service definition file and the service configuration file.
D.
Run the Set-AzureVMDiagnosticsExtensionPowerShell cmdlet.
E.
Run the Enable-AzureWebsiteApplicationDiagnostic PowerShell cmdlet.
F.
Create a storage account.
Explanation:
step 1 specify the scheduled TransferLogLevelFilter to Verbose in the diagnostics.wadcfg
step 2 Update the cloud service definition file and the service configuration file (.cspkg)
step 3 best practice is to create a separate storage account for logging diagnostics data
http://azure.microsoft.com/en-us/documentation/articles/cloud-services-how-to-monitor/
C, D, F
Verbose setting is not required, by default all Event Log events are transferred (scheduledTransferLogLevelFilter).
https://docs.microsoft.com/en-us/azure/monitoring-and-diagnostics/azure-diagnostics-schema-1dot3-and-later
However you DO need the Microsoft.Azure.Diagnostics extension to access Advanced monitoring which provides access to the Event Logs, plus the Storage account to save them to.
https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ps-extensions-diagnostics
https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-how-to-monitor#advanced-monitoring
0
0