I have a notitifactions project that uses SignalR to push notifications to an Angular client. What I noticed is that when I deploy my app, I define the server connections count as 5 (default) but trough time I can see that the server connections are increasing and I don't know why this is happening.
You can see in this picture my server and client connections in 30 days. It starts with 5 when I deploy the app and today it has 19 and max was 29.
Is this expected behavior or I doing something wrong in my hub?
My configuration for SignalR:
"AzureSignalROptions": {
"ConnectionString": "(...)",
"ClientTimeoutInterval": 3600,
"HandshakeTimeout": 30,
"KeepAliveInterval": 15,
"EnableDetailedErrors": false,
"MaximumReceiveMessageSize": 32000,
"StreamBufferCapacity": 10,
"SupportedProtocols": null,
"ServerConnectionCount": 5