Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v6.2.4 to pick up doc changes #96

Merged
merged 1 commit into from
Mar 15, 2022
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 6.2.4
- [DOC] Emphasize importance of delimiter setting for byte stream inputs [#95](https://github.com/logstash-plugins/logstash-codec-cef/pull/95)

## 6.2.3
- Feat: event_factory support [#94](https://github.com/logstash-plugins/logstash-codec-cef/pull/94)

Expand Down
5 changes: 5 additions & 0 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -443,12 +443,17 @@ this to be that delimiter.

NOTE: Byte stream inputs such as TCP require delimiter to be specified. Otherwise input can be truncated or incorrectly split.

**Example**

[source,ruby]
-----
input {
tcp {
codec => cef { delimiter => "\r\n" }
# ...
}
}
-----

This setting allows the following character sequences to have special meaning:

Expand Down
2 changes: 1 addition & 1 deletion logstash-codec-cef.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-codec-cef'
s.version = '6.2.3'
s.version = '6.2.4'
s.platform = 'java'
s.licenses = ['Apache License (2.0)']
s.summary = "Reads the ArcSight Common Event Format (CEF)."
Expand Down