Matt Randle
Matt Randle

Reputation: 1893

DiagnosticMonitor in Azure Web Site

Can you use the Azure DiagnosticMonitor in an Azure Web Site (not a web role) ? Or does it need a compute role?

Upvotes: 5

Views: 1119

Answers (2)

astaykov
astaykov

Reputation: 30903

No,

Azure DiagnosticsMonitor is only for Web/Worker Roles. Diagnostic in Azure WebSite is common as for any web application. As Azure WebSites use persistent storage, you can safely write a log file (having in mind you are using multi-threaded environment like in any ASP.NET/or any web application). More, you can configure additional diagnostics options in the "Configure" tab of the WebSite:

Azure WebSites Diagnostics

You can turn on Detailed Error Messages + Failed Request Tracing. You can download the Failed Request logs from the FTP server of your site.

You can use log4net for detailed error/trace logging in your web application (if it is ASP.NET). Some tutorial here.

Upvotes: 5

Gaurav Mantri
Gaurav Mantri

Reputation: 136126

No, You can't use Windows Azure Diagnostics (DiagnosticsMonitor) in an Azure Website. You would need to use a compute role for that.

Upvotes: 4

Related Questions