So for my blazor application is currently in production.
I do need to release new versions at some points.I would like to know if at that time anyone is using the application.For this I could ask everyone (about 20 colleagues) whether anyone is using the application.
I feel like there should be an easier way to do this.Now I know that a blazor application uses SignalR to perform the communication between server and client and that when I restart the docker container, all connections are reset. So I feel like there should be a way to request from the SignalR Hub whether anyone is connected to the application, but I have not yet found a way.
Does anyone know any way of checking if (and who) is using the application at point x in time?