我想强调测试我的Web Api自托管应用程序.此应用程序托管在Azure辅助角色上.
我知道如何从我的Worker Role获取性能计数器到我的存储(用于分析),但因为我的web api是使用Microsoft.Owin.Host.HttpListener自托管的,我不知道是否有一些现有的perf计数器我可以插上.
我试过几个计数器perfmon:
> AspNet应用程序
> Web服务(这只允许我选择在IIS中定义的Web应用程序)
当我选择Process时,我没有像req / sec等那样有趣的计数器……
有没有办法激活自托管Owin应用程序的一些计数器?
只使用我没有制作的配置?
使用其他自我主持人?
使用其他组件并修改我的代码? (添加属性……,我见过像https://github.com/aliostad/PerfIt这样的东西)
非常感谢.
解决方法
我看到你提到了诊断,这些是我在诊断中使用的:
<PerformanceCounterConfiguration counterSpecifier="\Asp.net\Request Execution Time" sampleRate="PT1M" /> <PerformanceCounterConfiguration counterSpecifier="\ASP.net\Requests Rejected" sampleRate="PT1M" /> <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Current Connections" sampleRate="PT1M" /> <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Connection Attempts/sec" sampleRate="PT1M" />
我做了什么,进入perfmon并右键单击我的开发机器上的“添加计数器”,然后输入与我相似的内容的名称到cmd提示符中,如下所示:
typeperf "\Web Service(_Total)\Connection Attempts/sec"
我能够测试很多,看看哪些是有用的.
希望能帮助到你,
=德文