我有一个 TraceManager 类,它基本上从 System.Diagnostics.TraceSource 类调用 TraceEvent 方法。
TraceSource source = new TraceSource("MyTraceSource");
void TraceInternal(TraceEventType eventType, string message)
{
if (source != null)
{
try
{
source.TraceEvent(eventType, (int)eventType, message);
}
catch (SecurityException)
{
//Cannot access to file listener or cannot have
//privileges to write in event log
//do not propagete this :-(
}
}
}
public void TraceError(string message)
{
if (String.IsNullOrEmpty(message))
throw new ArgumentNullException("message", Messages.exception_InvalidTraceMessage);
TraceInternal(TraceEventType.Error, message);
}
因此,为了跟踪错误,我调用 TraceError 方法。
好吧,这是我在 WebRole OnStart 方法中使用的代码:
DiagnosticMonitorConfiguration dmc = DiagnosticMonitor.GetDefaultInitialConfiguration();
TimeSpan transferPeriod = TimeSpan.FromMinutes(1.0);
dmc.Logs.ScheduledTransferPeriod = transferPeriod;
dmc.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;
DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", dmc);
这是我在 web.config 中的配置:
<system.diagnostics>
<sources>
<source name="MyTraceSource" switchName="sourceSwitch" switchType="System.Diagnostics.SourceSwitch">
<listeners>
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="AzureDiagnostics">
<filter type="" />
</add>
</listeners>
</source>
</sources>
<switches>
<add name="sourceSwitch" value="Verbose"/>
</switches>
</system.diagnostics>
这些是我的 WebRole 的配置设置:
<ConfigurationSettings>
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=ValidAcountName;AccountKey=ValidAcountKey" />
</ConfigurationSettings>
最后,我的 ServiceDefinition 中有诊断导入:
<Imports>
<Import moduleName="Diagnostics" />
</Imports>
当我在 Azure 模拟器下从 Visual Studio 运行我的应用程序时,它运行良好。甚至我可以更改我的 ConfigurationSettings 以将我的日志保存在存储模拟器或我的云存储中。但是当我将它部署到天蓝色时,我看不到任何日志。
有任何想法吗?