I need to log specific activities of my web application (Python based - SQL alchemy with Postgres) and I don't want to either dump log information on my Postgres database (why fill it up with mostly rubbish?) or use a log file (hard to search).
Ideally I would like to throw everything in another database and do this in an asynchronous way. With the logging being asynchronous I don't need to worry about the write operation failing and breaking to code that does all the important business. Also, if I miss a few logging events, it is probably no big deal.
Mongo seems like an excellent solution since it is well suited for writing operations and easy to setup.
The problem is that I have not managed to find any python tools that cover my needs and in particular the asynchronous requirement.
Any thoughts?
