企业库5:未在Windows Azure上记录到事件日志的例外情况

时间:2011-05-12 14:16:18

标签: logging azure enterprise-library enterprise-library-5

我有一个部署为Windows Azure Web角色的WCF服务。

我正在使用Enterprise Library进行异常处理,在我的本地Development Fabric中,似乎使用事件日志处理程序(记录到应用程序事件日志)正确处理和记录异常。

当它在Azure上运行时,似乎正在应用异常策略(因为我观察到正确处理某些预期的异常),所以没有任何内容记录到事件日志中。

以下是异常处理政策:

<add name="Entity">
  <exceptionTypes>
    <add name="All Exceptions"
         type="System.Exception, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
         postHandlingAction="NotifyRethrow">
      <exceptionHandlers>
        <add name="Logging Exception Handler"
             type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.LoggingExceptionHandler, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 
             logCategory="General" 
             eventId="100" 
             severity="Error" 
             title="Enterprise Library Exception Handling"
             formatterType="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.TextExceptionFormatter, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling"
             priority="0" />
      </exceptionHandlers>
    </add>
  </exceptionTypes>
</add>

这是Logging配置:

 <loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
   <listeners>
     <add name="Event Log Listener"
          type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
          listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" source="Enterprise Library Logging" formatter="Text Formatter"
          log="Application" 
          machineName="." 
          traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, ProcessId, ThreadId, Callstack" />
  </listeners>
  <formatters>
    <add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
         template="Timestamp: {timestamp}{newline}&#xA;Message: {message}{newline}&#xA;Category: {category}{newline}&#xA;Priority: {priority}{newline}&#xA;EventId: {eventid}{newline}&#xA;Severity: {severity}{newline}&#xA;Title:{title}{newline}&#xA;Machine: {localMachine}{newline}&#xA;App Domain: {localAppDomain}{newline}&#xA;ProcessId: {localProcessId}{newline}&#xA;Process Name: {localProcessName}{newline}&#xA;Thread Name: {threadName}{newline}&#xA;Win32 ThreadId:{win32ThreadId}{newline}&#xA;Extended Properties: {dictionary({key} - {value}{newline})}" 
         name="Text Formatter" />
  </formatters>
  <categorySources>
    <add switchValue="All" name="General">
      <listeners>
        <add name="Event Log Listener" />
      </listeners>
    </add>
  </categorySources>
  <specialSources>
    <allEvents switchValue="All" name="All Events" />
    <notProcessed switchValue="All" name="Unprocessed Category" />
    <errors switchValue="All" name="Logging Errors &amp; Warnings">
      <listeners>
        <add name="Event Log Listener" />
      </listeners>
    </errors>
  </specialSources>
</loggingConfiguration>

知道出了什么问题吗?

2 个答案:

答案 0 :(得分:3)

执行日志记录的最佳方法是使用诊断跟踪侦听器。 Windows Azure中的事件日志名称不同。要使用此企业库,您需要从事件日志侦听器更改为Windows Azure诊断跟踪侦听器。我们在“Moving Applications to the Cloud”一书中提供了有关此内容的更多信息。代码在VS 2008中,但您可以在VS 2010中打开以查看示例。在代码中,了解我们如何使用Windows Azure诊断跟踪侦听器设置企业库日志记录。您需要确保将日志移动以查看信息。这本书详细介绍了这一点。

如果您想快速查看一下,可以从我们的codeplex网站下载音乐应用程序here,该网站显示如何在Windows Azure中使用Enterprise Library。这是我们正在努力升级的旧版本。

有关追踪here的详情。

答案 1 :(得分:1)

使用具有默认设置的事件日志跟踪侦听器的先决条件是确保安装了默认事件源(“Enterprise Library Logging”)。为了安装此事件源(或任何其他自定义源)并使用此侦听器,可以使用执行Windows PowerShell脚本的启动任务。这些脚本安装自定义源。带有相应PowerShell脚本的QuickStart使用此方法。