2

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?

1 Answer 1

4

Sentry is probably a direct answer to your question but I would recommend you look into other options for log mining.

Take a look at Loggly which offers logging as a service and the dashboard comes pre-built. Orange has toolkit in python to do this too. Python, web log data mining for frequent patterns might be of some help.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.