Checking if your server has alerts - marcos8154/SocketAppServer GitHub Wiki
When certain critical situations occur, the server will automatically save a set of alerts to your directory as a file.
Periodically, it is interesting that you check for alerts on the server, they contain important tips for improving your application code.
A very common example of alerting is when the server is close to popping the buffer size configured at startup.
The class that will allow you to check these alerts is ServerAlertManager, invoking the static Load method:
List<ServerAlert> alerts = ServerAlertManager.Load();