I'm using Django for logging bunch of logs. My system is serving millions of requests every minute so I've removed all the logging from my SQL DB to Django loggers to flat files for the sake of latency.
However, since millions of lines are written to log files, I have to write some log reader module to read those logs and present it on dashboard so that I can take a look at them everyday.
So I was curious, is there any module in Django (or some Django snippet) that can read logger logs programmatically?