We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3627b2 + deffe4d commit a0cf800Copy full SHA for a0cf800
1 file changed
README.rst
@@ -92,7 +92,7 @@ For example::
92
except:
93
test_logger.exception('python-logstash-logger: Exception with stack trace!')
94
95
-
+
96
97
Using with Django
98
=================
@@ -123,10 +123,27 @@ Modify your ``settings.py`` to integrate ``python-logstash`` with Django's loggi
123
...
124
}
125
126
+Note
127
+====
128
129
+Example Logstash Configuration (``logstash.conf``) for Receiving Events from python-logstash is::
130
131
+ input {
132
+ tcp {
133
+ port => 5000
134
+ codec => json
135
+ }
136
137
+ output {
138
+ stdout {
139
+ codec => rubydebug
140
141
142
143
Contributors
144
------------
145
- Volodymyr Klochan
146
- Kiall Mac Innes
147
- Alexander Boyd
148
- joel-wright
- - Dale O'Brien
149
+ - Dale O'Brien
0 commit comments