0

我在控制台应用程序中实现了 Windows Azure Auto Scale Application Block,它监控性能计数器并将实例添加到 Web 角色。我也实现了日志记录,但它没有在控制台中显示日志,也没有根据规则将新实例添加到 Web 角色。

它没有给我任何错误......

4

1 回答 1

0

在不知道应用程序是如何配置的(特别是app.config计划文件的内容和内容)的情况下,我能做出的最有根据的猜测是,您app.config缺少<system.diagnostics>启用从块中记录消息的配置。

简而言之,app.config您应该有一个类似于以下内容的部分(取自我的一个示例应用程序):

<system.diagnostics>
  <trace autoflush="true" />
    <sources>
      <source name="Autoscaling General" switchName="SourceSwitch" switchType="System.Diagnostics.SourceSwitch">
        <listeners>
          <add name="FileLog"/>
          <remove name="Default" />
          <!-- Uncomment the below section to write to the Application Event Log -->
          <!--<add name="EventLog"/>-->
        </listeners>
      </source>
      <source name="Autoscaling Updates" switchName="SourceSwitch" switchType="System.Diagnostics.SourceSwitch">
        <listeners>
          <add name="FileLog"/>
          <remove name="Default" />
          <!-- Uncomment the below section to write to the Application Event Log -->
          <!--<add name="EventLog"/>-->
        </listeners>
      </source>
        <!-- This section defines the logging configuration for My.Application.Log -->
        <source name="DefaultSource" switchName="DefaultSwitch">
            <listeners>
                <add name="FileLog"/>
                <!-- Uncomment the below section to write to the Application Event Log -->
                <!--<add name="EventLog"/>-->
            </listeners>
        </source>
    </sources>
    <switches>
        <add name="DefaultSwitch" value="Information"/>
      <add name="SourceSwitch" value="Verbose, Information, Warning, Error, Critical"/>
    </switches>
    <sharedListeners>
        <add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter" location="ExecutableDirectory"/>

        <!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
        <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
    </sharedListeners>
</system.diagnostics>

您可以从MSDN找到更多信息。

除了他,我记得我必须设置一些断点(Autoscaler.Start如果我提醒正确的话)以捕获一些配置错误。

于 2013-06-27T17:59:13.977 回答