fluent-plugin-sumologic_output 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 5db25c9b7ac9e0a3c59424d7f3fc5c4bb1d53d27
4
- data.tar.gz: fa733ca4ed03b66a475e8c06201e38584b50f5c1
3
+ metadata.gz: db88a29c5689d1ef9fe32528d5e07e52b726f0bb
4
+ data.tar.gz: d261cd1d2416ed8a19c7c3830f88e5f14e37de1c
5
5
  SHA512:
6
- metadata.gz: 36721ceacc453015d0f819c1337061d9e92c3de065f030e02f1af0802b016a6d82caa1dbb65c58bcd25e3bbcff84c8723df9c0d647cb12932b1c1cf44de994e0
7
- data.tar.gz: 1dc18e8b3686efcf69794f0bf0ab55751ca89f72fc220254c4bf52279dadb066a571417b94985dd833edfc8240621061ebd03601dd2b6f0d9db6ee748828f916
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.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"
@@ -25,7 +25,8 @@ class SumologicConnection
25
25
  {
26
26
  'X-Sumo-Name' => source_name,
27
27
  'X-Sumo-Category' => source_category,
28
- 'X-Sumo-Host' => source_host
28
+ 'X-Sumo-Host' => source_host,
29
+ 'X-Sumo-Client' => 'fluentd-output'
29
30
  }
30
31
  end
31
32
 
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.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-11-06 00:00:00.000000000 Z
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: []