README.md in logstash-input-nsq-1.0.4 vs README.md in logstash-input-nsq-1.0.5
- old
+ new
@@ -26,9 +26,40 @@
channel => "testchannel"
max_in_flight => 200
}
}
+
+Logstash Configuration with TLS
+====================
+
+ input {
+ nsq {
+ nsqlookupd => ["127.0.0.1:4161","1.2.3.4:4161"]
+ topic => "testtopic"
+ channel => "testchannel"
+ max_in_flight => 200
+ tls_v1 => true
+ }
+ }
+
+
+Logstash Configuration with TLS Auth
+====================
+
+ input {
+ nsq {
+ nsqlookupd => ["127.0.0.1:4161","1.2.3.4:4161"]
+ topic => "testtopic"
+ channel => "testchannel"
+ max_in_flight => 200
+ tls_v1 => true
+ tls_key => "/path/to/private.key"
+ tls_cert => "/path/to/public.key"
+ }
+ }
+
+
Dependencies
====================
* nsq-ruby