Skip to content
Closed
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 @@
## 3.1.3
- Fix: concurrency issue with multiline codec and other grok-based plugins [#75](https://github.com/logstash-plugins/logstash-codec-multiline/pull/75)

## 3.1.2
- Fix: periodic runner fails to stop and prevent pipeline shutdown [#72](https://github.com/logstash-plugins/logstash-codec-multiline/pull/72)

Expand Down
2 changes: 1 addition & 1 deletion lib/logstash/codecs/multiline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
require "logstash/codecs/auto_flush"
require 'logstash/plugin_mixins/ecs_compatibility_support'
require 'logstash/plugin_mixins/event_support/event_factory_adapter'
require "grok-pure" # rubygem 'jls-grok'

# The multiline codec will collapse multiline messages and merge them into a
# single event.
Expand Down Expand Up @@ -155,7 +156,6 @@ def initialize(*params)
end

def register
require "grok-pure" # rubygem 'jls-grok'
require 'logstash/patterns/core'

# Detect if we are running from a jarfile, pick the right path.
Expand Down
2 changes: 1 addition & 1 deletion logstash-codec-multiline.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-codec-multiline'
s.version = '3.1.2'
s.version = '3.1.3'
s.licenses = ['Apache License (2.0)']
s.summary = "Merges multiline messages into a single event"
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"
Expand Down