Steps for configuring the Windows Azure diagnostics are as follows:
- Import the Diagnostics module in the csdef file
<Imports>
<Import moduleName="Diagnostics" />
</Imports>
- The option for tracing and debugging can be included in the Windows Azure application code
- Custom performance counters can be created for web and worker roles using powershell scripts in startup tasks. You can collect data from the existing performance counters as well
- Store dignostics data in an Azure storage, since the collected data is only cached and hence does not perisist. The diagnostics storage can be defined in the cscfg file using the following settings
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=storageaccesskey" />
Replace the storagename and storageaccesskey using the name and access key of your diagnostics storage
Comments
Post a Comment