logstash-output-opentsdb 3.0.1 → 3.1.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: 8f52908e80524d5a6069596e79d373c97e3f3abf
4
- data.tar.gz: 10d4ba4dded23d1f22d7ba98b7c5cac36de13a89
3
+ metadata.gz: 0c8d2f23ba83449884974232a496a2039090fc94
4
+ data.tar.gz: 4f6f5b492ed2348cfbda1ed6246f2ad59f307330
5
5
  SHA512:
6
- metadata.gz: ca2f890a7cfcb64e462ebb3217d4e25c910ef49dcb6351cfd4325b01e8a5a3bccf8930b865fda493f074413e79bd9b70f7638e46d8f2ac9a0875ef20cbeefe7a
7
- data.tar.gz: 9918f07509b1db2d848fbc163597dfe6a8a10bddef49f04a6805890aaf509cd5e3ff5bd687b57ab2b34097ba2b69953e56fe574f91e969757d05c403e30783ff
6
+ metadata.gz: 53ece1c4ca49bc460bf9f07d6e6e1cb96cec17a294cfa2af9ad6e2b73e9091d6d004f883f6fc99aed3ffaf3f8c6faf8efe4102c875082e0e2d759023cd1606ad
7
+ data.tar.gz: 323a971979077bfc8393ac7979184e6afede8832e0df729de3bde872170cc79bdd1d0164121562a73825444515e3afb79879778f30727b0293f554f79d8aaf86
@@ -1,11 +1,21 @@
1
+ ## 3.1.1
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
4
+ ## 3.1.0
5
+ - breaking,config: Removing deprecated config `debug`.
6
+
1
7
  ## 3.0.1
2
- - Republish all the gems under jruby.
8
+ - Republish all the gems under jruby.
9
+
3
10
  ## 3.0.0
4
- - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
5
- # 2.0.4
6
- - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
7
- # 2.0.3
8
- - New dependency requirements for logstash-core for the 5.0 release
11
+ - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
12
+
13
+ ## 2.0.4
14
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
15
+
16
+ ## 2.0.3
17
+ - New dependency requirements for logstash-core for the 5.0 release
18
+
9
19
  ## 2.0.0
10
20
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
11
21
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
@@ -9,9 +9,6 @@ require "socket"
9
9
  class LogStash::Outputs::Opentsdb < LogStash::Outputs::Base
10
10
  config_name "opentsdb"
11
11
 
12
- # Enable debugging.
13
- config :debug, :validate => :boolean, :default => false, :deprecated => "This setting was never used by this plugin. It will be removed soon."
14
-
15
12
  # The address of the opentsdb server.
16
13
  config :host, :validate => :string, :default => "localhost"
17
14
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-opentsdb'
4
- s.version = '3.0.1'
4
+ s.version = '3.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output allows you to pull metrics from your logs and ship them to opentsdb"
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
25
  s.add_development_dependency 'logstash-devutils'
26
26
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-opentsdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-09 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
17
20
  - !ruby/object:Gem::Version
18
- version: '2.0'
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
@@ -75,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
81
  version: '0'
76
82
  requirements: []
77
83
  rubyforge_project:
78
- rubygems_version: 2.4.8
84
+ rubygems_version: 2.6.3
79
85
  signing_key:
80
86
  specification_version: 4
81
87
  summary: This output allows you to pull metrics from your logs and ship them to opentsdb