创建性能计数器时Azure模拟器中的错误

时间:2012-10-12 11:18:44

标签: azure azure-compute-emulator

我正在尝试测量Azure项目上的处理器负载,并且在运行模拟器时,我在模拟器控制台中遇到错误,如下所示:

[MonAgentHost] Error: MA EVENT: 2012-10-10T12:15:06.982Z
[MonAgentHost] Error:    2
[MonAgentHost] Error:    9028
[MonAgentHost] Error:    8168
[MonAgentHost] Error:    SysCounterListener.dll
[MonAgentHost] Error:    0
[MonAgentHost] Error:    b9eb57e3-62d5-49a5-b395-abc3bd5
[MonAgentHost] Error:    liscounter.cpp
[MonAgentHost] Error:    SystemCounter::AddCounter
[MonAgentHost] Error:    660
[MonAgentHost] Error:    ffffffffc0000bb9
[MonAgentHost] Error:    0
[MonAgentHost] Error:    
[MonAgentHost] Error:    PdhAddCounter(\Processor(_Total)\% Processor Time) failed

我尝试过创建一个新的简单控制台项目(不是Azure)。在这里,我能够阅读性能指标,因此这个建议http://www.infosysblogs.com/microsoft/2011/06/mystery_of_the_windows_azure_d.html似乎不是解决方案。

我在RoleEntryPoint的OnStart中设置性能计数器,如下所示:

public class WebRole : RoleEntryPoint
{
    public override bool OnStart()
    {
        try
        {
            DiagnosticMonitorConfiguration config = DiagnosticMonitor.GetDefaultInitialConfiguration();

            var counters = new List<string>
                    {
                        @"\Processor(_Total)\% Processor Time"
                    };

            if (counters.Count() > 0)
            {
                config.PerformanceCounters.ScheduledTransferPeriod = TimeSpan.FromMinutes(5);
                config.PerformanceCounters.BufferQuotaInMB = 10;

                counters.ForEach(counter =>
                    config.PerformanceCounters.DataSources.Add(
                        new PerformanceCounterConfiguration()
                        {
                            CounterSpecifier = counter,
                            SampleRate = TimeSpan.FromSeconds(10)
                        })
                );
            }

            DiagnosticMonitor.Start(
                    "Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString",
                    config);

        }
        catch (Exception e)
        {
            Trace.TraceError("Exception during WebRole1.OnStart: " + e.ToString());
        }

        return base.OnStart();
    }
}

我尝试过设置IIS-logging工作得很好。跟踪也是如此。只是没有性能指标...

我使用的是安装了Visual Studio 2010 SP1和Azure SDK 1.7的Windows 7 Home Premium(它在SDK 1.3 eighter上无效)。

有人知道我的装置中缺少什么吗?

1 个答案:

答案 0 :(得分:4)

您是否偶然使用非英语版本的Windows?如果是这样,我有个坏消息。

显然,性能计数器已在注册表中本地化,但Azure诊断程序尝试使用其英文名称注册它们(请参阅PdhAddCounter(\Processor(_Total)\% Processor Time) failed)。

我遇到了同样的问题并在Azure论坛上问了一个问题(here),但没有提供解决方案或解决方法。我想云中的所有服务器都运行英文版的Windows,所以这不是问题,但是你无法在本地测试。

如果这适用于您,我可以提供的唯一解决方案是安装英文版Windows。