I'm building an application using gevent. My app is getting rather big now,there are a lot of jobs being spawned and destroyed. Many different kind of jobs. Now I've noticed that when one of these jobs crashes my entire application just keeps running (if the exception came from a non main greenlet) which is fine. BUT The problems is that I have to look at my console to see the error happening. So some part of my application can "die" and I'm not instantly aware of that and the app keeps running.
Jittering my app with try catch stuff does not seem to be a clean solution. Maybe a custom spawn function which does some error reporting?
What is the proper way to monitor gevent jobs/greenlets? catch exceptions?
In my case I listen for events of a few different sources and I should deal with each diffent. There are like 5 jobs extremely important. The webserver greenlet, websocket greenlet, database greenlet, alarms greenlet, zmq greenlet. If any of those 'dies' my application should completely die. Other jobs which die are not that important. It is now possible that for example the websocket greenlet dies due to some exception raised. But the rest of the applications keeps running fine like nothing happened while actually it is completely useless and dangerous now and should just crash hard.