Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ For example::
except:
test_logger.exception('python-logstash-logger: Exception with stack trace!')



Using with Django
=================
Expand Down Expand Up @@ -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
- Dale O'Brien