Ask HN: What process monitoring solutions do you use?

5 points by tkahn6 ↗ HN
I'm looking for something like Cloudkick/Exceptional but for process monitoring rather than server/webapp monitoring.

I have multiple programs/scripts running that are not webapps that need to be monitored for any sort of failures or just to make sure they're doing what they're supposed to be doing.

Some sort of monitoring of stdout or communication over AMQP with a web interface would be ideal.

Hopefully I've described what I want correctly. Does anything like this exist?

Thanks HN

2 comments

[ 2.3 ms ] story [ 15.8 ms ] thread
I have my processes dump messages into a MongoDB database, I give each process a single document and in it's an array they put messages and errors in, removing the oldest item beyond a certain size.

There's probably something more elegant but it's working well and it's a negligible amount of code to put messages in or pull them out to display.