fluent-plugin-input-gelf 0.3.1 → 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 +4 -4
- data/fluent-plugin-input-gelf.gemspec +1 -1
- data/lib/fluent/plugin/in_gelf.rb +4 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02bd5fa91b5ed4ae973eb263a442407248fd8826e3dfd1ed1769f63084a6e1da
|
4
|
+
data.tar.gz: 5a09d5e7f2554da332b0dc9473783f03ece3cfbe2c06b146dab124d4f8c741ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10e6f1291630ff6132756346ec107a3aef63e4da756b2da6e6b0c4558a477d015aed0ddd908eb34a30eec3013956102892dd231b60d95d48317969b1186dc506
|
7
|
+
data.tar.gz: 7fe77c5b71561cbb0d5cbe70dffb1b81ffee52d832e04c0da9759d6eee518de386594eeece56c7702cf6258d7ed4f770aa0eaff2a8707e00406962e70b317757
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.license = "MIT"
|
8
8
|
gem.homepage = "https://github.com/MerlinDMC/fluent-plugin-input-gelf"
|
9
9
|
gem.summary = gem.description
|
10
|
-
gem.version = "0.3.
|
10
|
+
gem.version = "0.3.2"
|
11
11
|
gem.authors = ["Daniel Malon"]
|
12
12
|
gem.email = "daniel.malon@me.com"
|
13
13
|
gem.has_rdoc = false
|
@@ -89,7 +89,10 @@ module Fluent::Plugin
|
|
89
89
|
receive_data(data, conn)
|
90
90
|
end
|
91
91
|
else
|
92
|
-
|
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|
|
93
96
|
receive_data(data, sock)
|
94
97
|
end
|
95
98
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-input-gelf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Malon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fluentd
|
@@ -135,8 +135,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
135
|
- !ruby/object:Gem::Version
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
|
-
rubygems_version: 3.0.3
|
138
|
+
rubygems_version: 3.0.3.1
|
139
139
|
signing_key:
|
140
140
|
specification_version: 4
|
141
141
|
summary: A GELF input plugin for fluentd
|
142
|
-
test_files:
|
142
|
+
test_files:
|
143
|
+
- test/plugin/test_in_gelf.rb
|
144
|
+
- test/test_helper.rb
|