fluent-plugin-gelf-in.fitterpen 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.travis.yml +33 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +25 -0
- data/Rakefile +12 -0
- data/fluent-plugin-input-gelf.gemspec +37 -0
- data/lib/fluent/plugin/in_gelf.rb +116 -0
- data/test/plugin/test_in_gelf.rb +116 -0
- data/test/test_helper.rb +38 -0
- metadata +141 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: faceebe56b6a7b9c2a9ae244996951c231b2bccb697f78baa5f42b7e8e4260fe
|
4
|
+
data.tar.gz: 76a616407ef3eb603ee03198daeb9b39b2e985e292ede376bf545ba7f47c6942
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7f30e3f2da86c021b310d93f0cfb89366f3798cac96bc19b23b9c4671ba25f1f9bc2d4a0720273482bb3b6427f7f1ac0934627233ff7c3bba91faddbe5413bd0
|
7
|
+
data.tar.gz: ac45ef618fa86a78a4e0a9783ec3a13c09d93704d9ffbcdba6808ff8d44d3e6f3de465aeaf9b8f026538e3f37824f090dc7c2c4387e255a52c83269bb5aba7ed
|
data/.travis.yml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
rvm:
|
4
|
+
- 2.1
|
5
|
+
- 2.2
|
6
|
+
- 2.3
|
7
|
+
- 2.4
|
8
|
+
- 2.5
|
9
|
+
|
10
|
+
gemfile:
|
11
|
+
- Gemfile
|
12
|
+
|
13
|
+
branches:
|
14
|
+
only:
|
15
|
+
- master
|
16
|
+
# Tagged commits
|
17
|
+
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
|
18
|
+
|
19
|
+
script: bundle exec rake test
|
20
|
+
|
21
|
+
jobs:
|
22
|
+
include:
|
23
|
+
- stage: gem release
|
24
|
+
rvm: 2.3
|
25
|
+
script: echo "Deploying to rubygems.org ..."
|
26
|
+
deploy:
|
27
|
+
provider: rubygems
|
28
|
+
api_key:
|
29
|
+
secure: R06ICCYHjZ+bk+CocD+eZROiTsfDnmUlugdSIqND0f9Z+Vi8ALOZmIEhlpBvloRaOLU0pz3d9juj74vHMJ1boJN6Qgn+CtAGSDzesxm6vcd/AP87mEzAaJvvHRme7bNLy7gt1RvrmVzDjyOe2fF8kcVAz19bEArJ1rqBXeLiLY+fOPenCsWRNrOt2+yOH5qRgdFs+n2NQ6oQrDEq18uZJVQ74WnSyKGylIhPfXj+TcgMrDGJtxqWYmL+DeuzOVk73REMHiw+9ljvhjVIdMxiU/oXge9y7Ua7q6OlkJgmChaWrs06bHiwhJHz6yh+OXebVFbxHTsPdsw4w+Uv9/MB961zgR58yLVi6AJr5xosM8l92S/OJeG9paO43xuQGeX+mch7m/827VbeM8aLtRGXjNILC3BW+l9O++Yg0eF6YC4c6NobNOX4ZpfGNopDsoyYI19Yj9SoKvoqw3WtAZsX2T5CrAdG1PHLKNDwyCbuiYjlNKAAHy5ZCB7X63JrDAKgwUQSnYEPEGNVzisnNfyqVxQnvTDZLwgzWcYxTBCjXoO09+qsbB9lpgecT45UI80VgW70nokEzilmyXARG+eBGKhz2iJli+mrdZbpfzws/PD/Hr5dubgn8mNX5/e6DRMoTr9xQOGrvdXhET+ygiTEWg1VMzfcZ2WpeJTveV9h2BQ=
|
30
|
+
gem: fluent-plugin-input-gelf
|
31
|
+
on:
|
32
|
+
tags: true
|
33
|
+
repo: MerlinDMC/fluent-plugin-input-gelf
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 Daniel Malon
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# fluent-plugin-input-gelf
|
2
|
+
|
3
|
+
[](https://travis-ci.org/MerlinDMC/fluent-plugin-input-gelf)
|
4
|
+
[](http://badge.fury.io/rb/fluent-plugin-input-gelf)
|
5
|
+
|
6
|
+
## Overview
|
7
|
+
|
8
|
+
A GELF compatible input for [Fluentd](http://www.fluentd.org/).
|
9
|
+
|
10
|
+
### Configuration
|
11
|
+
|
12
|
+
Accept GELF encoded messages over UDP
|
13
|
+
|
14
|
+
```
|
15
|
+
<source>
|
16
|
+
type gelf
|
17
|
+
tag example.gelf
|
18
|
+
bind 127.0.0.1
|
19
|
+
port 12201
|
20
|
+
</source>
|
21
|
+
|
22
|
+
<match example.gelf>
|
23
|
+
type stdout
|
24
|
+
</match>
|
25
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
3
|
+
|
4
|
+
require 'rake/testtask'
|
5
|
+
|
6
|
+
Rake::TestTask.new(:test) do |test|
|
7
|
+
test.libs << 'lib' << 'test'
|
8
|
+
test.test_files = FileList['test/plugin/test_*.rb']
|
9
|
+
test.verbose = true
|
10
|
+
end
|
11
|
+
|
12
|
+
task :default => [:build]
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$:.push File.expand_path('../lib', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.name = "fluent-plugin-gelf-in.fitterpen"
|
6
|
+
gem.description = "A GELF input plugin for fluentd"
|
7
|
+
gem.license = "MIT"
|
8
|
+
gem.homepage = "https://github.com/MerlinDMC/fluent-plugin-input-gelf"
|
9
|
+
gem.summary = gem.description
|
10
|
+
gem.version = "0.3.2"
|
11
|
+
gem.authors = ["Daniel Malon"]
|
12
|
+
gem.email = "daniel.malon@me.com"
|
13
|
+
gem.has_rdoc = false
|
14
|
+
gem.files = [
|
15
|
+
".travis.yml",
|
16
|
+
"fluent-plugin-input-gelf.gemspec",
|
17
|
+
"Gemfile",
|
18
|
+
"LICENSE",
|
19
|
+
"Rakefile",
|
20
|
+
"README.md",
|
21
|
+
"lib/fluent/plugin/in_gelf.rb",
|
22
|
+
"test/plugin/test_in_gelf.rb",
|
23
|
+
"test/test_helper.rb"
|
24
|
+
]
|
25
|
+
#gem.files = `git ls-files`.split("\n")
|
26
|
+
#gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
27
|
+
#gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
28
|
+
gem.require_paths = ['lib']
|
29
|
+
|
30
|
+
gem.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
|
31
|
+
gem.add_runtime_dependency "gelfd2", ">= 0.3.0"
|
32
|
+
|
33
|
+
gem.add_development_dependency "bundler"
|
34
|
+
gem.add_development_dependency "rake"
|
35
|
+
gem.add_development_dependency "test-unit"
|
36
|
+
gem.add_development_dependency "gelf.fitterpen", ">= 2.0.0"
|
37
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'time'
|
3
|
+
|
4
|
+
require 'cool.io'
|
5
|
+
require 'yajl'
|
6
|
+
|
7
|
+
require 'gelfd2'
|
8
|
+
|
9
|
+
require 'fluent/plugin/input'
|
10
|
+
|
11
|
+
module Fluent::Plugin
|
12
|
+
class GelfInput < Fluent::Plugin::Input
|
13
|
+
Fluent::Plugin.register_input('gelf', self)
|
14
|
+
|
15
|
+
helpers :server, :parser, :compat_parameters
|
16
|
+
|
17
|
+
DEFAULT_PARSER = 'json'.freeze
|
18
|
+
|
19
|
+
def initialize
|
20
|
+
super
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "The value is the tag assigned to the generated events."
|
24
|
+
config_param :tag, :string
|
25
|
+
desc 'The port to listen to.'
|
26
|
+
config_param :port, :integer, default: 12201
|
27
|
+
desc 'The bind address to listen to.'
|
28
|
+
config_param :bind, :string, default: '0.0.0.0'
|
29
|
+
desc 'The transport protocol used to receive logs.(udp, tcp)'
|
30
|
+
config_param :protocol_type, :enum, list: [:udp, :tcp], default: :udp
|
31
|
+
desc 'Strip leading underscore'
|
32
|
+
config_param :strip_leading_underscore, :bool, default: true
|
33
|
+
|
34
|
+
config_section :parse do
|
35
|
+
config_set_default :@type, DEFAULT_PARSER
|
36
|
+
end
|
37
|
+
|
38
|
+
def configure(conf)
|
39
|
+
compat_parameters_convert(conf, :parser)
|
40
|
+
super
|
41
|
+
|
42
|
+
@parser = parser_create
|
43
|
+
end
|
44
|
+
|
45
|
+
def start
|
46
|
+
super
|
47
|
+
|
48
|
+
listen
|
49
|
+
end
|
50
|
+
|
51
|
+
def shutdown
|
52
|
+
super
|
53
|
+
end
|
54
|
+
|
55
|
+
def receive_data(data, addr)
|
56
|
+
begin
|
57
|
+
msg = Gelfd2::Parser.parse(data)
|
58
|
+
rescue => e
|
59
|
+
log.warn 'Gelfd failed to parse a message', error: e.to_s
|
60
|
+
log.warn_backtrace
|
61
|
+
end
|
62
|
+
|
63
|
+
# Gelfd parser will return nil if it received and parsed a non-final chunk
|
64
|
+
return if msg.nil?
|
65
|
+
|
66
|
+
@parser.parse(msg) { |time, record|
|
67
|
+
unless time && record
|
68
|
+
log.warn "pattern not match: #{msg.inspect}"
|
69
|
+
return
|
70
|
+
end
|
71
|
+
|
72
|
+
# Use the recorded event time if available
|
73
|
+
time = record.delete('timestamp').to_f if record.key?('timestamp')
|
74
|
+
|
75
|
+
# Postprocess recorded event
|
76
|
+
strip_leading_underscore_(record) if @strip_leading_underscore
|
77
|
+
|
78
|
+
emit(time, record)
|
79
|
+
}
|
80
|
+
rescue => e
|
81
|
+
log.error data.dump, error: e.to_s
|
82
|
+
log.error_backtrace
|
83
|
+
end
|
84
|
+
|
85
|
+
def listen
|
86
|
+
log.info "listening gelf socket on #{@bind}:#{@port} with #{@protocol_type}"
|
87
|
+
if @protocol_type == :tcp
|
88
|
+
server_create(:in_tcp_server, @port, bind: @bind) do |data, conn|
|
89
|
+
receive_data(data, conn)
|
90
|
+
end
|
91
|
+
else
|
92
|
+
# Graylog is ready to accept 8192 bytes of GELF, but with
|
93
|
+
# chunking we need to accept at least 12 bytes of chunk header
|
94
|
+
# as well. But we don't need to pin us down to that either.
|
95
|
+
server_create(:in_udp_server, @port, proto: :udp, bind: @bind, max_bytes: 65536) do |data, sock|
|
96
|
+
receive_data(data, sock)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def emit(time, record)
|
102
|
+
router.emit(@tag, time, record)
|
103
|
+
rescue => e
|
104
|
+
log.error 'gelf failed to emit', error: e.to_s, error_class: e.class.to_s, tag: @tag, record: Yajl.dump(record)
|
105
|
+
end
|
106
|
+
|
107
|
+
private
|
108
|
+
|
109
|
+
def strip_leading_underscore_(record)
|
110
|
+
record.keys.each { |k|
|
111
|
+
next unless k[0,1] == '_'
|
112
|
+
record[k[1..-1]] = record.delete(k)
|
113
|
+
}
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
require_relative '../test_helper'
|
2
|
+
|
3
|
+
require 'gelf'
|
4
|
+
|
5
|
+
class GelfInputTest < Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
Fluent::Test.setup
|
8
|
+
end
|
9
|
+
|
10
|
+
PORT = 12345
|
11
|
+
BASE_CONFIG = %[
|
12
|
+
port #{PORT}
|
13
|
+
protocol_type udp
|
14
|
+
tag gelf
|
15
|
+
]
|
16
|
+
CONFIG = BASE_CONFIG + %!
|
17
|
+
bind 127.0.0.1
|
18
|
+
!
|
19
|
+
IPv6_CONFIG = BASE_CONFIG + %!
|
20
|
+
bind ::1
|
21
|
+
!
|
22
|
+
|
23
|
+
def create_driver(conf)
|
24
|
+
Fluent::Test::Driver::Input.new(Fluent::Plugin::GelfInput).configure(conf)
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_configure
|
28
|
+
configs = {'127.0.0.1' => CONFIG}
|
29
|
+
configs.merge!('::1' => IPv6_CONFIG) if ipv6_enabled?
|
30
|
+
|
31
|
+
configs.each_pair { |k, v|
|
32
|
+
d = create_driver(v)
|
33
|
+
assert_equal PORT, d.instance.port
|
34
|
+
assert_equal k, d.instance.bind
|
35
|
+
assert_equal 'json', d.instance.parser_configs.first["@type"]
|
36
|
+
}
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_parse
|
40
|
+
configs = {'127.0.0.1' => CONFIG}
|
41
|
+
# gelf-rb currently does not support IPv6 over UDP
|
42
|
+
# configs.merge!('::1' => IPv6_CONFIG) if ipv6_enabled?
|
43
|
+
|
44
|
+
configs.each_pair { |k, v|
|
45
|
+
d = create_driver(v)
|
46
|
+
|
47
|
+
tests = [
|
48
|
+
{:short_message => 'short message', :full_message => 'full message'},
|
49
|
+
{:short_message => 'short message', :full_message => 'full message', :timestamp => 12345678.12345}
|
50
|
+
]
|
51
|
+
|
52
|
+
d.run(expect_emits: 2) do
|
53
|
+
n = GELF::Notifier.new(k, PORT)
|
54
|
+
|
55
|
+
tests.each { |test|
|
56
|
+
n.notify!(test)
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
emits = d.events
|
61
|
+
assert_equal tests.length, emits.length, 'missing emitted events'
|
62
|
+
emits.each_index { |i|
|
63
|
+
assert_equal 'gelf', emits[i][0]
|
64
|
+
assert_equal tests[i][:timestamp].to_f, emits[i][1] unless tests[i][:timestamp].nil?
|
65
|
+
assert_equal tests[i][:short_message], emits[i][2]['short_message']
|
66
|
+
assert_equal tests[i][:full_message], emits[i][2]['full_message']
|
67
|
+
}
|
68
|
+
}
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_strip_leading_underscore
|
72
|
+
configs = {'127.0.0.1' => CONFIG}
|
73
|
+
# gelf-rb currently does not support IPv6 over UDP
|
74
|
+
# configs.merge!('::1' => IPv6_CONFIG) if ipv6_enabled?
|
75
|
+
|
76
|
+
configs.each_pair { |k, v|
|
77
|
+
d = create_driver(v)
|
78
|
+
|
79
|
+
tests = [
|
80
|
+
{:given =>
|
81
|
+
{
|
82
|
+
:timestamp => 12345,
|
83
|
+
:short_message => 'short message',
|
84
|
+
:full_message => 'full message',
|
85
|
+
'_custom_field' => 12345
|
86
|
+
},
|
87
|
+
:expected =>
|
88
|
+
{
|
89
|
+
'short_message' => 'short message',
|
90
|
+
'full_message' => 'full message',
|
91
|
+
'custom_field' => 12345
|
92
|
+
}
|
93
|
+
}
|
94
|
+
]
|
95
|
+
|
96
|
+
d.run(expect_emits: 1) do
|
97
|
+
n = GELF::Notifier.new(k, PORT)
|
98
|
+
|
99
|
+
tests.each { |test|
|
100
|
+
n.notify!(test[:given])
|
101
|
+
}
|
102
|
+
end
|
103
|
+
|
104
|
+
emits = d.events
|
105
|
+
assert_equal tests.length, emits.length, 'missing emitted events'
|
106
|
+
emits.each_index { |i|
|
107
|
+
assert_equal 'gelf', emits[i][0]
|
108
|
+
assert_equal tests[i][:timestamp].to_f, emits[i][1] unless tests[i][:timestamp].nil?
|
109
|
+
assert_block "expectation not met: #{tests[i][:expected]}" do
|
110
|
+
emits[i][2].merge(tests[i][:expected]) == emits[i][2]
|
111
|
+
end
|
112
|
+
}
|
113
|
+
}
|
114
|
+
end
|
115
|
+
|
116
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler'
|
3
|
+
begin
|
4
|
+
Bundler.setup(:default, :development)
|
5
|
+
rescue Bundler::BundlerError => e
|
6
|
+
$stderr.puts e.message
|
7
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
8
|
+
exit e.status_code
|
9
|
+
end
|
10
|
+
require 'test/unit'
|
11
|
+
|
12
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
13
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
14
|
+
|
15
|
+
require 'fluent/test'
|
16
|
+
require 'fluent/test/driver/input'
|
17
|
+
require 'fluent/plugin/in_gelf'
|
18
|
+
|
19
|
+
def unused_port
|
20
|
+
s = TCPServer.open(0)
|
21
|
+
port = s.addr[1]
|
22
|
+
s.close
|
23
|
+
port
|
24
|
+
end
|
25
|
+
|
26
|
+
def ipv6_enabled?
|
27
|
+
require 'socket'
|
28
|
+
|
29
|
+
begin
|
30
|
+
TCPServer.open("::1", 0)
|
31
|
+
true
|
32
|
+
rescue
|
33
|
+
false
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
class Test::Unit::TestCase
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,141 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fluent-plugin-gelf-in.fitterpen
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel Malon
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: fluentd
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.14.10
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.14.10
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: gelfd2
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 0.3.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.3.0
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: bundler
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: rake
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: test-unit
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: gelf.fitterpen
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 2.0.0
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 2.0.0
|
103
|
+
description: A GELF input plugin for fluentd
|
104
|
+
email: daniel.malon@me.com
|
105
|
+
executables: []
|
106
|
+
extensions: []
|
107
|
+
extra_rdoc_files: []
|
108
|
+
files:
|
109
|
+
- ".travis.yml"
|
110
|
+
- Gemfile
|
111
|
+
- LICENSE
|
112
|
+
- README.md
|
113
|
+
- Rakefile
|
114
|
+
- fluent-plugin-input-gelf.gemspec
|
115
|
+
- lib/fluent/plugin/in_gelf.rb
|
116
|
+
- test/plugin/test_in_gelf.rb
|
117
|
+
- test/test_helper.rb
|
118
|
+
homepage: https://github.com/MerlinDMC/fluent-plugin-input-gelf
|
119
|
+
licenses:
|
120
|
+
- MIT
|
121
|
+
metadata: {}
|
122
|
+
post_install_message:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
125
|
+
- lib
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
requirements: []
|
137
|
+
rubygems_version: 3.1.2
|
138
|
+
signing_key:
|
139
|
+
specification_version: 4
|
140
|
+
summary: A GELF input plugin for fluentd
|
141
|
+
test_files: []
|