logstash-codec-multiline 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZmMxYzRlNDc3MDQzYTVkYmE4MjY5ZTgxMDAzZWE5ZjdkNWY0NGM0OQ==
5
+ data.tar.gz: !binary |-
6
+ ODZiZjhhMTIxNGYyMTkzNmRlZjM4MzM5NTJjM2I4YzBlMDE5NzczOQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTZiZjFkMDBjOGZjNWJjNDlkYjhmNzU3NGRlMmY3MDlhNWMwOWY2OGU0YjE3
10
+ ZWU2MTBhY2IzM2ZkYzBjNmI0NDA4ZDU2ZGJiOTBmMGRiMzVlOGI4ZjQxMTkz
11
+ ZjkwZDQ5NmQ1Mjg5NmIxOGRkNWI2NTA1Y2FiYTdmZWMzZjhlZGE=
12
+ data.tar.gz: !binary |-
13
+ NGE2YzM4ZmUwOTAxZjRkOTA5Y2IyYjk1MTcyMzE5YTFiY2FhNjU4Zjk5ZWFl
14
+ ZWUxZDEyNjU1YTczOTY2ODM4MWRhNDMxM2RkZjBhNTA5OGYxYjQwNWYwNmEw
15
+ NDdmZTQ4OWIyNjZlYTRjMzUwZWJkZGI5Yjg4YWY2MTUxYjVlZTc=
@@ -0,0 +1,3 @@
1
+ *.gem
2
+ Gemfile.lock
3
+ .bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+ gem 'rake'
3
+ gem 'gem_publisher'
4
+ gem 'archive-tar-minitar'
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2012-2014 Elasticsearch <http://www.elasticsearch.org>
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,6 @@
1
+ @files=[]
2
+
3
+ task :default do
4
+ system("rake -T")
5
+ end
6
+
@@ -0,0 +1,195 @@
1
+ # encoding: utf-8
2
+ require "logstash/codecs/base"
3
+ require "logstash/util/charset"
4
+ require "logstash/timestamp"
5
+
6
+ # The multiline codec will collapse multiline messages and merge them into a
7
+ # single event.
8
+ #
9
+ # The original goal of this codec was to allow joining of multiline messages
10
+ # from files into a single event. For example, joining Java exception and
11
+ # stacktrace messages into a single event.
12
+ #
13
+ # The config looks like this:
14
+ #
15
+ # input {
16
+ # stdin {
17
+ # codec => multiline {
18
+ # pattern => "pattern, a regexp"
19
+ # negate => "true" or "false"
20
+ # what => "previous" or "next"
21
+ # }
22
+ # }
23
+ # }
24
+ #
25
+ # The `pattern` should match what you believe to be an indicator that the field
26
+ # is part of a multi-line event.
27
+ #
28
+ # The `what` must be "previous" or "next" and indicates the relation
29
+ # to the multi-line event.
30
+ #
31
+ # The `negate` can be "true" or "false" (defaults to "false"). If "true", a
32
+ # message not matching the pattern will constitute a match of the multiline
33
+ # filter and the `what` will be applied. (vice-versa is also true)
34
+ #
35
+ # For example, Java stack traces are multiline and usually have the message
36
+ # starting at the far-left, with each subsequent line indented. Do this:
37
+ #
38
+ # input {
39
+ # stdin {
40
+ # codec => multiline {
41
+ # pattern => "^\s"
42
+ # what => "previous"
43
+ # }
44
+ # }
45
+ # }
46
+ #
47
+ # This says that any line starting with whitespace belongs to the previous line.
48
+ #
49
+ # Another example is to merge lines not starting with a date up to the previous
50
+ # line..
51
+ #
52
+ # input {
53
+ # file {
54
+ # path => "/var/log/someapp.log"
55
+ # codec => multiline {
56
+ # # Grok pattern names are valid! :)
57
+ # pattern => "^%{TIMESTAMP_ISO8601} "
58
+ # negate => true
59
+ # what => previous
60
+ # }
61
+ # }
62
+ # }
63
+ #
64
+ # This says that any line not starting with a timestamp should be merged with the previous line.
65
+ #
66
+ # One more common example is C line continuations (backslash). Here's how to do that:
67
+ #
68
+ # filter {
69
+ # multiline {
70
+ # type => "somefiletype"
71
+ # pattern => "\\$"
72
+ # what => "next"
73
+ # }
74
+ # }
75
+ #
76
+ # This says that any line ending with a backslash should be combined with the
77
+ # following line.
78
+ #
79
+ class LogStash::Codecs::Multiline < LogStash::Codecs::Base
80
+ config_name "multiline"
81
+ milestone 3
82
+
83
+ # The regular expression to match.
84
+ config :pattern, :validate => :string, :required => true
85
+
86
+ # If the pattern matched, does event belong to the next or previous event?
87
+ config :what, :validate => ["previous", "next"], :required => true
88
+
89
+ # Negate the regexp pattern ('if not matched').
90
+ config :negate, :validate => :boolean, :default => false
91
+
92
+ # Logstash ships by default with a bunch of patterns, so you don't
93
+ # necessarily need to define this yourself unless you are adding additional
94
+ # patterns.
95
+ #
96
+ # Pattern files are plain text with format:
97
+ #
98
+ # NAME PATTERN
99
+ #
100
+ # For example:
101
+ #
102
+ # NUMBER \d+
103
+ config :patterns_dir, :validate => :array, :default => []
104
+
105
+ # The character encoding used in this input. Examples include "UTF-8"
106
+ # and "cp1252"
107
+ #
108
+ # This setting is useful if your log files are in Latin-1 (aka cp1252)
109
+ # or in another character set other than UTF-8.
110
+ #
111
+ # This only affects "plain" format logs since JSON is UTF-8 already.
112
+ config :charset, :validate => ::Encoding.name_list, :default => "UTF-8"
113
+
114
+ # Tag multiline events with a given tag. This tag will only be added
115
+ # to events that actually have multiple lines in them.
116
+ config :multiline_tag, :validate => :string, :default => "multiline"
117
+
118
+ public
119
+ def register
120
+ require "grok-pure" # rubygem 'jls-grok'
121
+ require 'logstash/patterns/core'
122
+ # Detect if we are running from a jarfile, pick the right path.
123
+ patterns_path = []
124
+ patterns_path += [LogStash::Patterns::Core.path]
125
+
126
+ @grok = Grok.new
127
+
128
+ @patterns_dir = patterns_path.to_a + @patterns_dir
129
+ @patterns_dir.each do |path|
130
+ if File.directory?(path)
131
+ path = File.join(path, "*")
132
+ end
133
+
134
+ Dir.glob(path).each do |file|
135
+ @logger.info("Grok loading patterns from file", :path => file)
136
+ @grok.add_patterns_from_file(file)
137
+ end
138
+ end
139
+
140
+ @grok.compile(@pattern)
141
+ @logger.debug("Registered multiline plugin", :type => @type, :config => @config)
142
+
143
+ @buffer = []
144
+ @handler = method("do_#{@what}".to_sym)
145
+
146
+ @converter = LogStash::Util::Charset.new(@charset)
147
+ @converter.logger = @logger
148
+ end # def register
149
+
150
+ public
151
+ def decode(text, &block)
152
+ text = @converter.convert(text)
153
+
154
+ match = @grok.match(text)
155
+ @logger.debug("Multiline", :pattern => @pattern, :text => text,
156
+ :match => !match.nil?, :negate => @negate)
157
+
158
+ # Add negate option
159
+ match = (match and !@negate) || (!match and @negate)
160
+ @handler.call(text, match, &block)
161
+ end # def decode
162
+
163
+ def buffer(text)
164
+ @time = LogStash::Timestamp.now if @buffer.empty?
165
+ @buffer << text
166
+ end
167
+
168
+ def flush(&block)
169
+ if @buffer.any?
170
+ event = LogStash::Event.new(LogStash::Event::TIMESTAMP => @time, "message" => @buffer.join(NL))
171
+ # Tag multiline events
172
+ event.tag @multiline_tag if @multiline_tag && @buffer.size > 1
173
+
174
+ yield event
175
+ @buffer = []
176
+ end
177
+ end
178
+
179
+ def do_next(text, matched, &block)
180
+ buffer(text)
181
+ flush(&block) if !matched
182
+ end
183
+
184
+ def do_previous(text, matched, &block)
185
+ flush(&block) if !matched
186
+ buffer(text)
187
+ end
188
+
189
+ public
190
+ def encode(event)
191
+ # Nothing to do.
192
+ @on_event.call(event)
193
+ end # def encode
194
+
195
+ end # class LogStash::Codecs::Plain
@@ -0,0 +1,29 @@
1
+ Gem::Specification.new do |s|
2
+
3
+ s.name = 'logstash-codec-multiline'
4
+ s.version = '0.1.0'
5
+ s.licenses = ['Apache License (2.0)']
6
+ s.summary = "The multiline codec will collapse multiline messages and merge them into a single event."
7
+ s.description = "The multiline codec will collapse multiline messages and merge them into a single event."
8
+ s.authors = ["Elasticsearch"]
9
+ s.email = 'richard.pijnenburg@elasticsearch.com'
10
+ s.homepage = "http://logstash.net/"
11
+ s.require_paths = ["lib"]
12
+
13
+ # Files
14
+ s.files = `git ls-files`.split($\)
15
+
16
+ # Tests
17
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
18
+
19
+ # Special flag to let us know this is actually a logstash plugin
20
+ s.metadata = { "logstash_plugin" => "true", "group" => "codec" }
21
+
22
+ # Gem dependencies
23
+ s.add_runtime_dependency 'logstash', '>= 1.4.0', '< 2.0.0'
24
+
25
+ s.add_runtime_dependency 'logstash-patterns-core'
26
+ s.add_runtime_dependency 'jls-grok', [ '0.11.0' ]
27
+
28
+ end
29
+
@@ -0,0 +1,9 @@
1
+ require "gem_publisher"
2
+
3
+ desc "Publish gem to RubyGems.org"
4
+ task :publish_gem do |t|
5
+ gem_file = Dir.glob(File.expand_path('../*.gemspec',File.dirname(__FILE__))).first
6
+ gem = GemPublisher.publish_if_updated(gem_file, :rubygems)
7
+ puts "Published #{gem}" if gem
8
+ end
9
+
@@ -0,0 +1,169 @@
1
+ require "net/http"
2
+ require "uri"
3
+ require "digest/sha1"
4
+
5
+ def vendor(*args)
6
+ return File.join("vendor", *args)
7
+ end
8
+
9
+ directory "vendor/" => ["vendor"] do |task, args|
10
+ mkdir task.name
11
+ end
12
+
13
+ def fetch(url, sha1, output)
14
+
15
+ puts "Downloading #{url}"
16
+ actual_sha1 = download(url, output)
17
+
18
+ if actual_sha1 != sha1
19
+ fail "SHA1 does not match (expected '#{sha1}' but got '#{actual_sha1}')"
20
+ end
21
+ end # def fetch
22
+
23
+ def file_fetch(url, sha1)
24
+ filename = File.basename( URI(url).path )
25
+ output = "vendor/#{filename}"
26
+ task output => [ "vendor/" ] do
27
+ begin
28
+ actual_sha1 = file_sha1(output)
29
+ if actual_sha1 != sha1
30
+ fetch(url, sha1, output)
31
+ end
32
+ rescue Errno::ENOENT
33
+ fetch(url, sha1, output)
34
+ end
35
+ end.invoke
36
+
37
+ return output
38
+ end
39
+
40
+ def file_sha1(path)
41
+ digest = Digest::SHA1.new
42
+ fd = File.new(path, "r")
43
+ while true
44
+ begin
45
+ digest << fd.sysread(16384)
46
+ rescue EOFError
47
+ break
48
+ end
49
+ end
50
+ return digest.hexdigest
51
+ ensure
52
+ fd.close if fd
53
+ end
54
+
55
+ def download(url, output)
56
+ uri = URI(url)
57
+ digest = Digest::SHA1.new
58
+ tmp = "#{output}.tmp"
59
+ Net::HTTP.start(uri.host, uri.port, :use_ssl => (uri.scheme == "https")) do |http|
60
+ request = Net::HTTP::Get.new(uri.path)
61
+ http.request(request) do |response|
62
+ fail "HTTP fetch failed for #{url}. #{response}" if [200, 301].include?(response.code)
63
+ size = (response["content-length"].to_i || -1).to_f
64
+ count = 0
65
+ File.open(tmp, "w") do |fd|
66
+ response.read_body do |chunk|
67
+ fd.write(chunk)
68
+ digest << chunk
69
+ if size > 0 && $stdout.tty?
70
+ count += chunk.bytesize
71
+ $stdout.write(sprintf("\r%0.2f%%", count/size * 100))
72
+ end
73
+ end
74
+ end
75
+ $stdout.write("\r \r") if $stdout.tty?
76
+ end
77
+ end
78
+
79
+ File.rename(tmp, output)
80
+
81
+ return digest.hexdigest
82
+ rescue SocketError => e
83
+ puts "Failure while downloading #{url}: #{e}"
84
+ raise
85
+ ensure
86
+ File.unlink(tmp) if File.exist?(tmp)
87
+ end # def download
88
+
89
+ def untar(tarball, &block)
90
+ require "archive/tar/minitar"
91
+ tgz = Zlib::GzipReader.new(File.open(tarball))
92
+ # Pull out typesdb
93
+ tar = Archive::Tar::Minitar::Input.open(tgz)
94
+ tar.each do |entry|
95
+ path = block.call(entry)
96
+ next if path.nil?
97
+ parent = File.dirname(path)
98
+
99
+ mkdir_p parent unless File.directory?(parent)
100
+
101
+ # Skip this file if the output file is the same size
102
+ if entry.directory?
103
+ mkdir path unless File.directory?(path)
104
+ else
105
+ entry_mode = entry.instance_eval { @mode } & 0777
106
+ if File.exists?(path)
107
+ stat = File.stat(path)
108
+ # TODO(sissel): Submit a patch to archive-tar-minitar upstream to
109
+ # expose headers in the entry.
110
+ entry_size = entry.instance_eval { @size }
111
+ # If file sizes are same, skip writing.
112
+ next if stat.size == entry_size && (stat.mode & 0777) == entry_mode
113
+ end
114
+ puts "Extracting #{entry.full_name} from #{tarball} #{entry_mode.to_s(8)}"
115
+ File.open(path, "w") do |fd|
116
+ # eof? check lets us skip empty files. Necessary because the API provided by
117
+ # Archive::Tar::Minitar::Reader::EntryStream only mostly acts like an
118
+ # IO object. Something about empty files in this EntryStream causes
119
+ # IO.copy_stream to throw "can't convert nil into String" on JRuby
120
+ # TODO(sissel): File a bug about this.
121
+ while !entry.eof?
122
+ chunk = entry.read(16384)
123
+ fd.write(chunk)
124
+ end
125
+ #IO.copy_stream(entry, fd)
126
+ end
127
+ File.chmod(entry_mode, path)
128
+ end
129
+ end
130
+ tar.close
131
+ File.unlink(tarball) if File.file?(tarball)
132
+ end # def untar
133
+
134
+ def ungz(file)
135
+
136
+ outpath = file.gsub('.gz', '')
137
+ tgz = Zlib::GzipReader.new(File.open(file))
138
+ begin
139
+ File.open(outpath, "w") do |out|
140
+ IO::copy_stream(tgz, out)
141
+ end
142
+ File.unlink(file)
143
+ rescue
144
+ File.unlink(outpath) if File.file?(outpath)
145
+ raise
146
+ end
147
+ tgz.close
148
+ end
149
+
150
+ desc "Process any vendor files required for this plugin"
151
+ task "vendor" do |task, args|
152
+
153
+ @files.each do |file|
154
+ download = file_fetch(file['url'], file['sha1'])
155
+ if download =~ /.tar.gz/
156
+ prefix = download.gsub('.tar.gz', '').gsub('vendor/', '')
157
+ untar(download) do |entry|
158
+ if !file['files'].nil?
159
+ next unless file['files'].include?(entry.full_name.gsub(prefix, ''))
160
+ out = entry.full_name.split("/").last
161
+ end
162
+ File.join('vendor', out)
163
+ end
164
+ elsif download =~ /.gz/
165
+ ungz(download)
166
+ end
167
+ end
168
+
169
+ end
@@ -0,0 +1,160 @@
1
+ # encoding: utf-8
2
+
3
+ require "logstash/codecs/multiline"
4
+ require "logstash/event"
5
+ require "insist"
6
+
7
+ describe LogStash::Codecs::Multiline do
8
+ context "#decode" do
9
+ it "should be able to handle multiline events with additional lines space-indented" do
10
+ codec = LogStash::Codecs::Multiline.new("pattern" => "^\\s", "what" => "previous")
11
+ lines = [ "hello world", " second line", "another first line" ]
12
+ events = []
13
+ lines.each do |line|
14
+ codec.decode(line) do |event|
15
+ events << event
16
+ end
17
+ end
18
+ codec.flush { |e| events << e }
19
+ insist { events.size } == 2
20
+ insist { events[0]["message"] } == "hello world\n second line"
21
+ insist { events[0]["tags"] }.include?("multiline")
22
+ insist { events[1]["message"] } == "another first line"
23
+ insist { events[1]["tags"] }.nil?
24
+ end
25
+
26
+ it "should allow custom tag added to multiline events" do
27
+ codec = LogStash::Codecs::Multiline.new("pattern" => "^\\s", "what" => "previous", "multiline_tag" => "hurray" )
28
+ lines = [ "hello world", " second line", "another first line" ]
29
+ events = []
30
+ lines.each do |line|
31
+ codec.decode(line) do |event|
32
+ events << event
33
+ end
34
+ end
35
+ codec.flush { |e| events << e }
36
+ insist { events.size } == 2
37
+ insist { events[0]["tags"] }.include?("hurray")
38
+ insist { events[1]["tags"] }.nil?
39
+ end
40
+
41
+ it "should allow grok patterns to be used" do
42
+ codec = LogStash::Codecs::Multiline.new(
43
+ "pattern" => "^%{NUMBER} %{TIME}",
44
+ "negate" => true,
45
+ "what" => "previous"
46
+ )
47
+
48
+ lines = [ "120913 12:04:33 first line", "second line", "third line" ]
49
+
50
+ events = []
51
+ lines.each do |line|
52
+ codec.decode(line) do |event|
53
+ events << event
54
+ end
55
+ end
56
+ codec.flush { |e| events << e }
57
+
58
+ insist { events.size } == 1
59
+ insist { events.first["message"] } == lines.join("\n")
60
+ end
61
+
62
+
63
+ context "using default UTF-8 charset" do
64
+
65
+ it "should decode valid UTF-8 input" do
66
+ codec = LogStash::Codecs::Multiline.new("pattern" => "^\\s", "what" => "previous")
67
+ lines = [ "foobar", "κόσμε" ]
68
+ events = []
69
+ lines.each do |line|
70
+ insist { line.encoding.name } == "UTF-8"
71
+ insist { line.valid_encoding? } == true
72
+
73
+ codec.decode(line) { |event| events << event }
74
+ end
75
+ codec.flush { |e| events << e }
76
+ insist { events.size } == 2
77
+
78
+ events.zip(lines).each do |tuple|
79
+ insist { tuple[0]["message"] } == tuple[1]
80
+ insist { tuple[0]["message"].encoding.name } == "UTF-8"
81
+ end
82
+ end
83
+
84
+ it "should escape invalid sequences" do
85
+ codec = LogStash::Codecs::Multiline.new("pattern" => "^\\s", "what" => "previous")
86
+ lines = [ "foo \xED\xB9\x81\xC3", "bar \xAD" ]
87
+ events = []
88
+ lines.each do |line|
89
+ insist { line.encoding.name } == "UTF-8"
90
+ insist { line.valid_encoding? } == false
91
+
92
+ codec.decode(line) { |event| events << event }
93
+ end
94
+ codec.flush { |e| events << e }
95
+ insist { events.size } == 2
96
+
97
+ events.zip(lines).each do |tuple|
98
+ insist { tuple[0]["message"] } == tuple[1].inspect[1..-2]
99
+ insist { tuple[0]["message"].encoding.name } == "UTF-8"
100
+ end
101
+ end
102
+ end
103
+
104
+
105
+ context "with valid non UTF-8 source encoding" do
106
+
107
+ it "should encode to UTF-8" do
108
+ codec = LogStash::Codecs::Multiline.new("charset" => "ISO-8859-1", "pattern" => "^\\s", "what" => "previous")
109
+ samples = [
110
+ ["foobar", "foobar"],
111
+ ["\xE0 Montr\xE9al", "à Montréal"],
112
+ ]
113
+
114
+ # lines = [ "foo \xED\xB9\x81\xC3", "bar \xAD" ]
115
+ events = []
116
+ samples.map{|(a, b)| a.force_encoding("ISO-8859-1")}.each do |line|
117
+ insist { line.encoding.name } == "ISO-8859-1"
118
+ insist { line.valid_encoding? } == true
119
+
120
+ codec.decode(line) { |event| events << event }
121
+ end
122
+ codec.flush { |e| events << e }
123
+ insist { events.size } == 2
124
+
125
+ events.zip(samples.map{|(a, b)| b}).each do |tuple|
126
+ insist { tuple[1].encoding.name } == "UTF-8"
127
+ insist { tuple[0]["message"] } == tuple[1]
128
+ insist { tuple[0]["message"].encoding.name } == "UTF-8"
129
+ end
130
+ end
131
+ end
132
+
133
+ context "with invalid non UTF-8 source encoding" do
134
+
135
+ it "should encode to UTF-8" do
136
+ codec = LogStash::Codecs::Multiline.new("charset" => "ASCII-8BIT", "pattern" => "^\\s", "what" => "previous")
137
+ samples = [
138
+ ["\xE0 Montr\xE9al", "� Montr�al"],
139
+ ["\xCE\xBA\xCF\x8C\xCF\x83\xCE\xBC\xCE\xB5", "����������"],
140
+ ]
141
+ events = []
142
+ samples.map{|(a, b)| a.force_encoding("ASCII-8BIT")}.each do |line|
143
+ insist { line.encoding.name } == "ASCII-8BIT"
144
+ insist { line.valid_encoding? } == true
145
+
146
+ codec.decode(line) { |event| events << event }
147
+ end
148
+ codec.flush { |e| events << e }
149
+ insist { events.size } == 2
150
+
151
+ events.zip(samples.map{|(a, b)| b}).each do |tuple|
152
+ insist { tuple[1].encoding.name } == "UTF-8"
153
+ insist { tuple[0]["message"] } == tuple[1]
154
+ insist { tuple[0]["message"].encoding.name } == "UTF-8"
155
+ end
156
+ end
157
+
158
+ end
159
+ end
160
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: logstash-codec-multiline
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Elasticsearch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: logstash
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.4.0
20
+ - - <
21
+ - !ruby/object:Gem::Version
22
+ version: 2.0.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 1.4.0
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: 2.0.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: logstash-patterns-core
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: jls-grok
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - '='
52
+ - !ruby/object:Gem::Version
53
+ version: 0.11.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - '='
59
+ - !ruby/object:Gem::Version
60
+ version: 0.11.0
61
+ description: The multiline codec will collapse multiline messages and merge them into
62
+ a single event.
63
+ email: richard.pijnenburg@elasticsearch.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - .gitignore
69
+ - Gemfile
70
+ - LICENSE
71
+ - Rakefile
72
+ - lib/logstash/codecs/multiline.rb
73
+ - logstash-codec-multiline.gemspec
74
+ - rakelib/publish.rake
75
+ - rakelib/vendor.rake
76
+ - spec/codecs/multiline_spec.rb
77
+ homepage: http://logstash.net/
78
+ licenses:
79
+ - Apache License (2.0)
80
+ metadata:
81
+ logstash_plugin: 'true'
82
+ group: codec
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.4.1
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: The multiline codec will collapse multiline messages and merge them into
103
+ a single event.
104
+ test_files:
105
+ - spec/codecs/multiline_spec.rb