4

我有一个 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 以将我的日志保存在存储模拟器或我的云存储中。但是当我将它部署到天蓝色时,我看不到任何日志。

有任何想法吗?

4

2 回答 2

1

如果以下设置处于活动状态,您能否检查您的 Azure 项目的属性?如果是,请尝试停用它:

在此处输入图像描述

参考: http: //michaelcollier.wordpress.com/2012/04/02/where-is-my-windows-azure-diagnostics-data/

于 2012-05-30T18:03:49.677 回答
0

您是否确认TRACE在构建应用程序时定义了常量?如果您有自定义构建脚本,是否可能未定义此常量?

这将阻止 Trace 语句被记录。

于 2015-07-16T15:29:20.360 回答