2012-05-30 131 views
4

我有一個TraceManager類,基本上從System.Diagnostics.TraceSource類調用TraceEvent方法。Azure跟蹤日誌在模擬器上工作,但不能在雲上工作

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以將我的日誌保存在存儲模擬器或我的雲存儲中。但是當我將它部署到天藍色時,我看不到任何日誌。

任何想法?

+0

雖然我與您位於同一條船上,但我在位於Web角色下的diagnostics.wadcfg文件中配置了我的日誌。我嘗試從WebRole.cs的OnStart()方法啓動它,但沒有運氣。神話般的WADLogsTable無處不在... –

回答

0

你確認,你定義TRACE常數,當你正在構建的應用程序?如果你有一個自定義的構建腳本,有沒有可能這個常量沒有被定義?

這將阻止記錄Trace語句。

相關問題