fluent-plugin-kubernetes_remote_syslog 0.3.5 → 0.3.6
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/README.md +2 -2
- data/VERSION +1 -1
- data/lib/fluent/plugin/out_kubernetes_remote_syslog.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae427678ab5d1352824cf45bf3e5c14bb846167b
|
|
4
|
+
data.tar.gz: 486b5a78cd6fc22a2f2efecb5e396f848ac957d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a236e2efda9637e71dc176aaaba697fd10cac375042e2bdff929d60114f4d5db2d82159a88b8f879658a390d551291c8af5a4683c6abf489c9ee12eccaa32b5f
|
|
7
|
+
data.tar.gz: ceac972165e6d8169675771125578ee883832bbf3e3c616ac0e622aa02b9236f8eff54458bfa4568ebd06bd2adcedc06333d8440d6acea3ab494caa27eae876f
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ This repo was forked from https://github.com/dlackty/fluent-plugin-remote_syslog
|
|
|
14
14
|
|
|
15
15
|
```
|
|
16
16
|
<match foo>
|
|
17
|
-
type
|
|
17
|
+
type kubernetes_remote_syslog
|
|
18
18
|
host example.com
|
|
19
19
|
port 514
|
|
20
20
|
severity debug
|
|
@@ -27,7 +27,7 @@ UDP logs are limited to 1024 bytes which can truncate your logs. If you need to
|
|
|
27
27
|
|
|
28
28
|
```
|
|
29
29
|
<match foo>
|
|
30
|
-
type
|
|
30
|
+
type kubernetes_remote_syslog
|
|
31
31
|
host example.com
|
|
32
32
|
protocol tcp
|
|
33
33
|
port 514
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.6
|
|
@@ -44,7 +44,7 @@ module Fluent
|
|
|
44
44
|
|
|
45
45
|
tag = rewrite_tag!(tag.dup)
|
|
46
46
|
if @protocol.downcase == 'tcp'
|
|
47
|
-
@loggers[tag] ||=
|
|
47
|
+
@loggers[tag] ||= RemoteSyslogSender::TcpSender.new(@host,
|
|
48
48
|
@port,
|
|
49
49
|
facility: @facility,
|
|
50
50
|
severity: @severity,
|
|
@@ -52,7 +52,7 @@ module Fluent
|
|
|
52
52
|
program: tag,
|
|
53
53
|
local_hostname: record['kubernetes_host'])
|
|
54
54
|
else
|
|
55
|
-
@loggers[tag] ||=
|
|
55
|
+
@loggers[tag] ||= RemoteSyslogSender::UdpSender.new(@host,
|
|
56
56
|
@port,
|
|
57
57
|
facility: @facility,
|
|
58
58
|
severity: @severity,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-kubernetes_remote_syslog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- George Goh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
161
|
version: '0'
|
|
162
162
|
requirements: []
|
|
163
163
|
rubyforge_project:
|
|
164
|
-
rubygems_version: 2.6.
|
|
164
|
+
rubygems_version: 2.6.14
|
|
165
165
|
signing_key:
|
|
166
166
|
specification_version: 4
|
|
167
167
|
summary: Fluentd output plugin for remote syslog, specific to kubernetes logs
|