I have an application that has state transitions. These transitions are sent to the monitoring server using trapper items. This way I can trace back every each state transition of my application.
Now suppose there is a network issue for some hours. The sender will report errors. How do you people manage such errors? I do not want to loose any state transition when the connection is reestablished later. Is there a mechanism like queuing trapper items so that they are sent to the server as soon as the connection is reestablished?
I have more of those states to be monitored and do not want to implement a queue myself in every place where I try to log a new state.
Now suppose there is a network issue for some hours. The sender will report errors. How do you people manage such errors? I do not want to loose any state transition when the connection is reestablished later. Is there a mechanism like queuing trapper items so that they are sent to the server as soon as the connection is reestablished?
I have more of those states to be monitored and do not want to implement a queue myself in every place where I try to log a new state.