DiagnosticMonitor.Start Method (String)
Assembly: Microsoft.WindowsAzure.Diagnostics (in Microsoft.WindowsAzure.Diagnostics.dll)
public static DiagnosticMonitor Start ( string diagnosticsStorageAccountConfigurationSettingName )
Parameters
- diagnosticsStorageAccountConfigurationSettingName
Type: System.String
A String that specifies a connection string to a storage account.
Return Value
Type: Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorReturns DiagnosticMonitor.This method starts a DiagnosticMonitor using the specified storage account and the default DiagnosticMonitorConfiguration. For more information about the default configuration, see GetDefaultInitialConfiguration.
Data buffers are transferred to the storage account indicated by the specified configuration setting. The storage account can be the local storage emulator, or a Windows Azure storage account in the cloud.
This method also registers the diagnostics monitoring agent for notification when changes to configuration settings occur. If the value of the connection string is changed in the ServiceConfiguration.cscfg file, the diagnostics monitoring agent will be automatically reconfigured to use the new connection.
Note |
|---|
| If your storage account is misconfigured, your role instance will start without diagnostics. To ensure that diagnostics will start, verify that your storage account is configured correctly before calling the Start(String) method. |
Example
The following code snippet starts the DiagnosticMonitor using the connection string specified in the ServiceConfiguration.cscfg file:
WebRole.cs
public class WebRole : RoleEntryPoint
{
public override bool OnStart()
{
// Start the DiagnosticMonitor with the default DiagnosticMonitorConfiguration.
DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString");
return base.OnStart();
}
}
ServiceConfiguration.cscfg
<ConfigurationSettings>
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"
value="UseDevelopmentStorage=true"/>
</ConfigurationSettings>
Development Platforms
Windows Vista, Windows 7 and Windows Server 2008Target Platforms
Note