Skip to content

Commit 653d875

Browse files
authored
Document default codec behavior and add guidance for newline delimited json (#54)
1 parent a725dcb commit 653d875

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 6.2.1
2+
- Document correct default plugin codec [#54](https://github.com/logstash-plugins/logstash-output-tcp/pull/54)
3+
14
## 6.2.0
25
- Reviewed and deprecated SSL settings to comply with Logstash's naming convention [#53](https://github.com/logstash-plugins/logstash-output-tcp/pull/53)
36
- Deprecated `ssl_enable` in favor of `ssl_enabled`

docs/index.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ include::{include_path}/plugin_header.asciidoc[]
2323

2424
Write events over a TCP socket.
2525

26-
Each event json is separated by a newline.
26+
By default this plugin uses the `json` codec. In order to have each event json separated by a newline, use the `json_lines` codec.
2727

2828
Can either accept connections from clients or connect to a server,
2929
depending on `mode`.

logstash-output-tcp.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22

33
s.name = 'logstash-output-tcp'
4-
s.version = '6.2.0'
4+
s.version = '6.2.1'
55
s.licenses = ['Apache License (2.0)']
66
s.summary = "Writes events over a TCP socket"
77
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"

0 commit comments

Comments
 (0)