diff --git a/README.rst b/README.rst index 85a95e2..2655e47 100644 --- a/README.rst +++ b/README.rst @@ -92,7 +92,7 @@ For example:: except: test_logger.exception('python-logstash-logger: Exception with stack trace!') - + Using with Django ================= @@ -123,10 +123,27 @@ Modify your ``settings.py`` to integrate ``python-logstash`` with Django's loggi ... } +Note +==== + +Example Logstash Configuration (``logstash.conf``) for Receiving Events from python-logstash is:: + + input { + tcp { + port => 5000 + codec => json + } + } + output { + stdout { + codec => rubydebug + } + } + Contributors ------------ - Volodymyr Klochan - Kiall Mac Innes - Alexander Boyd - joel-wright - - Dale O'Brien \ No newline at end of file + - Dale O'Brien