fluent-plugin-sumologic_output 1.7.4 → 1.7.5
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/Vagrantfile +3 -1
- data/fluent-plugin-sumologic_output.gemspec +1 -1
- data/lib/fluent/plugin/out_sumologic.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10221368588a63fe0f97cb60695466a78a12eae80c13f736b5ae54879e4a5b4e
|
|
4
|
+
data.tar.gz: 2b99181908e9df7b2bcae1e6534a9311d72464cb74923a77f3a7489eeeb13f94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 245aa88c7c415099db251eabf2c6b9e80a64d657cdf4df90e365115e962cbeec76279cab1d4d5dc87de1b6387475c0e6363a2be24c55d21953d4bc852727d869
|
|
7
|
+
data.tar.gz: c9a870b1252ca73b2565a4627e29ee5501ce9da6caa88834932d0edee05e45f573a5f7aeae183968e303786615622487188287236b1d12d8234ac992f25e822a
|
data/Vagrantfile
CHANGED
|
@@ -12,7 +12,9 @@ Vagrant.configure('2') do |config|
|
|
|
12
12
|
config.disksize.size = '50GB'
|
|
13
13
|
config.vm.box_check_update = false
|
|
14
14
|
config.vm.host_name = 'fluentd-output-sumologic'
|
|
15
|
-
|
|
15
|
+
# Vbox 6.1.28+ restricts host-only adapters to 192.168.56.0/21
|
|
16
|
+
# See: https://www.virtualbox.org/manual/ch06.html#network_hostonly
|
|
17
|
+
config.vm.network :private_network, ip: "192.168.56.45"
|
|
16
18
|
|
|
17
19
|
config.vm.provider 'virtualbox' do |vb|
|
|
18
20
|
vb.gui = false
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "fluent-plugin-sumologic_output"
|
|
7
|
-
gem.version = "1.7.
|
|
7
|
+
gem.version = "1.7.5"
|
|
8
8
|
gem.authors = ["Steven Adams", "Frank Reno"]
|
|
9
9
|
gem.email = ["stevezau@gmail.com", "frank.reno@me.com"]
|
|
10
10
|
gem.description = %q{Output plugin to SumoLogic HTTP Endpoint}
|
|
@@ -397,6 +397,8 @@ class Fluent::Plugin::Sumologic < Fluent::Plugin::Output
|
|
|
397
397
|
fields = [fields,@custom_fields].compact.join(",")
|
|
398
398
|
end
|
|
399
399
|
|
|
400
|
+
@log.debug { "Sending #{messages.count} #{@data_type} records with source category '#{source_category}', source host '#{source_host}', source name '#{source_name}'." }
|
|
401
|
+
|
|
400
402
|
@sumo_conn.publish(
|
|
401
403
|
messages.join("\n"),
|
|
402
404
|
source_host =source_host,
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-sumologic_output
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Adams
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-04-
|
|
12
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|