PerformanceCounterCategory

PerformanceCounterCategory

我正在尝试从ASP.NET MVC应用程序(在Windows 8 x64 PC上使用VS 2012)添加性能计数器,但是我遇到的问题是,如果我检查类别是否存在或添加新的性能计数器类别,则计算机会挂起

我的代码是:

namespace TestMvcCounter
{
  public class MvcApplication : System.Web.HttpApplication
  {
      protected void Application_Start()
      {
          AreaRegistration.RegisterAllAreas();

          WebApiConfig.Register(GlobalConfiguration.Configuration);
          FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
          RouteConfig.RegisterRoutes(RouteTable.Routes);
          BundleConfig.RegisterBundles(BundleTable.Bundles);

          if (!PerformanceCounterCategory.Exists("MY_TEST"))
          {
              CounterCreationDataCollection ccdc = new CounterCreationDataCollection();
              ccdc.Add(new CounterCreationData() { CounterName = "# loops", CounterType = PerformanceCounterType.RateOfCountsPerSecond32 });

              PerformanceCounterCategory.Create("MY_TEST", "Test performance counter", PerformanceCounterCategoryType.MultiInstance, ccdc);
          }

      }
   }
}

当代码到达这一行时
!PerformanceCounterCategory.Exists("MY_TEST")

系统挂起,没有任何异常或超时

您知道造成问题的原因是什么吗?

最佳答案

经过深入搜索,我发现问题出在IIS Express 8上。

我尝试取消安装并重新安装,但是没有用,然后尝试再次安装并安装IIS Express 7.5,它可以正常工作

10-01 12:48