fluent-plugin-syslog_rfc5424 0.9.0.rc.7 → 0.9.0.rc.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7d200568a10d960a8844fb87ff8aae326b30cc24cb3e51e1c3a9b00109452d8
|
4
|
+
data.tar.gz: 5c2ee8da9cbc6e9c91389747324466f87eeeec31d19b9ea27303716907a4ff46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ebf0daad2f0ea413240b48ede80e33193f8862e1c8630ef2e56fb6525138d21329b3a5d25e2868af3a731544d8a358d00b7094f346b1717917c0500b10637b0
|
7
|
+
data.tar.gz: c5daecd0f8a0a5bd3d11a70069c480c08982f249a574679b0123d80122f3e33dec5fa3068e65cebc77aa867961f0ab99650a88f44d02e4d8f79beb71662ea58e
|
@@ -58,10 +58,14 @@ module Fluent
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def socket_options
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
61
|
+
if @transport == 'udp'
|
62
|
+
{ connect: true }
|
63
|
+
elsif @transport == 'tls'
|
64
|
+
# TODO: make timeouts configurable
|
65
|
+
{ insecure: @insecure, verify_fqdn: !@insecure, cert_paths: @trusted_ca_path } #, connect_timeout: 1, send_timeout: 1, recv_timeout: 1, linger_timeout: 1 }
|
66
|
+
else
|
67
|
+
{}
|
68
|
+
end
|
65
69
|
end
|
66
70
|
|
67
71
|
def socket_key(transport, host, port)
|
@@ -73,4 +77,4 @@ module Fluent
|
|
73
77
|
end
|
74
78
|
end
|
75
79
|
end
|
76
|
-
end
|
80
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-syslog_rfc5424
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.0.rc.
|
4
|
+
version: 0.9.0.rc.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
150
|
- !ruby/object:Gem::Version
|
151
151
|
version: 1.3.1
|
152
152
|
requirements: []
|
153
|
-
rubygems_version: 3.1.
|
153
|
+
rubygems_version: 3.1.6
|
154
154
|
signing_key:
|
155
155
|
specification_version: 4
|
156
156
|
summary: FluentD output plugin to send messages via rfc5424
|