简体   繁体   中英

SignalR performance counters in Azure Web App

I've been trying to load test SignalR on my Azure Web App service (Eg how many connections it can handle before subscribe calls to the hub start failing). I found that SignalR perfomance counters ( https://www.asp.net/signalr/overview/performance/signalr-performance ) can provide me such info. However, I cannot install those performance counters on Web App service, buy running

SignalR.exe ipc

Is there a way to install those performance counters on WebApp or retrieve them somehow from code?

Performance Counters can't be installed on Azure Web App , as it is provided as a managed container and not a full fledged IIS on which you can do everything.

To be able to use these performance counters you can redeploy your solution on an Azure VM or to a Cloud Service, keeping in mind you will loose the flexibility that Azure Web App offers.

您可以公开使用WebRole在Azure的Web应用程序的SignalR性能计数器,如中所述文章

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM