fluent-plugin-sumologic_output 1.0.0 → 1.0.1
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/fluent-plugin-sumologic_output.gemspec +3 -3
- data/lib/fluent/plugin/out_sumologic.rb +2 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db88a29c5689d1ef9fe32528d5e07e52b726f0bb
|
4
|
+
data.tar.gz: d261cd1d2416ed8a19c7c3830f88e5f14e37de1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e2b5d9c722aa225961f4dbac3b456f5107329915d5c3b653ea357c14de6519aa1e11d322a2bab5673784930a91a12eababba2130b832eff0afcf62f3398f91b
|
7
|
+
data.tar.gz: 0af6f5eaf5d132db71a0eac55384f7afffc40bd739d26377828e78ffb06c7e00efff086eb19f8ace2e6ece0d7ff6f9252760225bd6e5d97ae413d0b8710589cb
|
data/README.md
CHANGED
@@ -26,7 +26,7 @@ Configuration options for fluent.conf are:
|
|
26
26
|
Reading from the JSON formatted log files with `in_tail` and wildcard filenames:
|
27
27
|
```
|
28
28
|
<source>
|
29
|
-
type tail
|
29
|
+
@type tail
|
30
30
|
format json
|
31
31
|
time_key time
|
32
32
|
path /path/to/*.log
|
@@ -37,7 +37,7 @@ Reading from the JSON formatted log files with `in_tail` and wildcard filenames:
|
|
37
37
|
</source>
|
38
38
|
|
39
39
|
<match appa.**>
|
40
|
-
type sumologic
|
40
|
+
@type sumologic
|
41
41
|
endpoint https://collectors.sumologic.com/receiver/v1/http/XXXXXXXXXX
|
42
42
|
log_format json
|
43
43
|
source_category prod/someapp/logs
|
@@ -4,9 +4,9 @@ $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.0.
|
8
|
-
gem.authors = ["Steven Adams"]
|
9
|
-
gem.email = ["stevezau@gmail.com"]
|
7
|
+
gem.version = "1.0.1"
|
8
|
+
gem.authors = ["Steven Adams", "Frank Reno"]
|
9
|
+
gem.email = ["stevezau@gmail.com", "frank.reno@me.com"]
|
10
10
|
gem.description = %q{Output plugin to SumoLogic HTTP Endpoint}
|
11
11
|
gem.summary = %q{Output plugin to SumoLogic HTTP Endpoint}
|
12
12
|
gem.homepage = "https://github.com/SumoLogic/fluentd-output-sumologic"
|
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-sumologic_output
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Adams
|
8
|
+
- Frank Reno
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2017-
|
12
|
+
date: 2017-12-19 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
@@ -83,6 +84,7 @@ dependencies:
|
|
83
84
|
description: Output plugin to SumoLogic HTTP Endpoint
|
84
85
|
email:
|
85
86
|
- stevezau@gmail.com
|
87
|
+
- frank.reno@me.com
|
86
88
|
executables: []
|
87
89
|
extensions: []
|
88
90
|
extra_rdoc_files: []
|