Django Logging Format For Logstash
I'm trying to configure my django application to write logs in a format which is easy for Logstash to consume. (Inspired by the Winston logging package for Node) Logstash expects a
Solution 1:
This [1] package provides a solution, but instead of writing to a file with formatters, it directly provides a handler to write to logstash.
Hope this helps.
[1] https://github.com/vklochan/python-logstash
Post a Comment for "Django Logging Format For Logstash"