fluent-plugin-loggly 0.0.9 → 0.1.0.pre

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5286729cf28b2f639a1687ee1ad0d6514b6e5d75
4
- data.tar.gz: ca9b416cefc9b457c3148aa57cdd6864020cb664
3
+ metadata.gz: a23168ff4117308306243f659491e87fb1029275
4
+ data.tar.gz: ced7410f8c6d77d8692ac3fd95ebd3fe1b511258
5
5
  SHA512:
6
- metadata.gz: 0c2dfd166c47d597410c95685ede510721b8711f5bdbad09b292d3a66ad51602b5928d229cdf99d700f002de605f09ec101927708b274de50536562b8ce9892d
7
- data.tar.gz: 1c5a733ebcd63bd0630c70890080dc817c8d7136c2e793f0aee4681d668c15972c670e86b663981415958ebf934c0142ec19eb8630caead3e31f7941f649158c
6
+ metadata.gz: 53415b7792fd1c2f3839fa0b8c6092ffc3b63a3b863dca4f4c92790c80324ad035a67aa9aef3bd999cf212c821e271dfe6638029aebd538d6724638fed1cefaa
7
+ data.tar.gz: 2478f4625195ff4bcf350d4ebe3adaaf57413df9c408a7068ac7e839d331dd33fd20fb776ce44ac4a8b5c602648c2f2c1122cfece01d142b86f2f07c5a1da3ee
data/README.md CHANGED
@@ -2,7 +2,6 @@ Loggly plugin for [Fluentd](http://www.fluentd.org)
2
2
  =============
3
3
 
4
4
  [![Gem](https://img.shields.io/gem/dt/fluent-plugin-loggly.svg)](https://rubygems.org/gems/fluent-plugin-loggly)
5
- [![Gem Version](https://badge.fury.io/rb/fluent-plugin-loggly.svg)](https://badge.fury.io/rb/fluent-plugin-loggly)
6
5
 
7
6
  With fluent-plugin-loggly you will be able to use [Loggly](http://loggly.com) as output the logs you collect with Fluentd.
8
7
 
@@ -23,13 +22,13 @@ or if you want to use buffered plugin:
23
22
  type loggly_buffered
24
23
  loggly_url https://logs-01.loggly.com/bulk/xxx-xxxx-xxxx-xxxxx-xxxxxxxxxx
25
24
  output_include_time true # add 'timestamp' record into log. (default: true)
26
- time_precision_digits 3 # Include 3 digits of sub-second precision (default: 0)
25
+ time_precision_digits 3 # Include 3 digits of sub-second precision (default: 0). Require version 0.14 of fluentd.
27
26
  buffer_type file
28
27
  buffer_path /path/to/buffer/file
29
28
  flush_interval 10s
30
29
  </match>
31
30
  ~~~~~
32
-
31
+
33
32
  Note that buffered plugin uses bulk import to improve performance, so make sure to set Bulk endpoint to loggly_url.
34
33
 
35
34
  The `xxx-xxxx...` is your Loggly access token.
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-loggly"
6
- s.version = "0.0.9"
6
+ s.version = "0.1.0.pre"
7
7
  s.authors = ["Patrik Antonsson"]
8
8
  s.email = ["patant@gmail.com"]
9
9
  s.homepage = "https://github.com/patant/fluent-plugin-loggly"
@@ -18,6 +18,6 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
  s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
21
- s.add_dependency('net-http-persistent', '~> 2.7')
22
- s.add_dependency('yajl-ruby', '~> 1.0')
21
+ s.add_dependency('net-http-persistent', '>= 2.7')
22
+ s.add_dependency('yajl-ruby', '>= 1.0')
23
23
  end
@@ -1,7 +1,7 @@
1
1
  module Fluent
2
2
  module Plugin
3
3
  module Loggly
4
- VERSION = "0.0.9"
4
+ VERSION = "0.1.0.pre"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-loggly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrik Antonsson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-13 00:00:00.000000000 Z
11
+ date: 2016-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-http-persistent
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.7'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.7'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: yajl-ruby
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.0'
41
41
  description: Fluentd pluging (fluentd.org) for output to loggly (loggly.com)
@@ -70,9 +70,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
70
  version: 1.9.3
71
71
  required_rubygems_version: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - '>'
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: 1.3.1
76
76
  requirements: []
77
77
  rubyforge_project: fluent-plugin-loggly
78
78
  rubygems_version: 2.4.6