We just started using SignalR in an MVC application, and now we get a bunch of warnings due to the high average response time. I suspect this is misleading since the application does not experience any performance degradation. SignalR seems to be using this URL to connect. This url is not the controller / action of the project and only the built-in signal code in the js file. The jquery.signalR-2.2.1.js file is a file. I suspect that he is simply leaving the connection to the website while he is on this page, and he is distorting our numbers. That's for sure? If so, is there a way to filter it from the application view?
Here is the counter. Is this the expected behavior?

Here is the jquery signalR code where it builds its url:
getUrl: function (connection, transport, reconnecting, poll, ajaxPost) {
var baseUrl = transport === "webSockets" ? "" : connection.baseUrl,
url = baseUrl + connection.appRelativeUrl,
qs = "transport=" + transport;
if (!ajaxPost && connection.groupsToken) {
qs += "&groupsToken=" + window.encodeURIComponent(connection.groupsToken);
}
if (!reconnecting) {
url += "/connect";
} else {
if (poll) {
url += "/poll";
} else {
url += "/reconnect";
}
if (!ajaxPost && connection.messageId) {
qs += "&messageId=" + window.encodeURIComponent(connection.messageId);
}
}
url += "?" + qs;
url = transportLogic.prepareQueryString(connection, url);
if (!ajaxPost) {
url += "&tid=" + Math.floor(Math.random() * 11);
}
return url;
},