logstash-output-opentsdb 2.0.4 → 3.0.0

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: c9a060ea22f9936a6bc9194c1fe1d837ad47949a
4
- data.tar.gz: e068b2b663b66fcd3225fdf0aa6b6f43e5117067
3
+ metadata.gz: 4cfddbc60872f81cc1c353454298a56d94173f0d
4
+ data.tar.gz: a6d2a0bd86d77c59190037c1658c2d13922f1b9c
5
5
  SHA512:
6
- metadata.gz: fc34b8472ee69e63588d3d258ceb5b1a250ed8849a61c3372fe2eab8c396efb5e1ed6a796a8f3320a3866a8e78ebd53b128011c90ad996e384ea37054307a100
7
- data.tar.gz: b4dc8d449bfaece847793e7aa7510964c5f5cec32857c395acb4adc3a19b617765270367f3ca6c5ecc7915449b03429548579946e3e11546719ec1db019694b1
6
+ metadata.gz: cf7170ed85254bfb56e35f48c5fdb1592cbff27ddee1dcb47cc9e156c9ee2b26314c6cecc76c26fcfec20d0a26d2a83ee42ccac63d95c0ba3e7cf9307685929d
7
+ data.tar.gz: edf4ff124946bf29b51cce598068652eba58770397ab3c3bcf157d9d10e0cfa7be694dedbaac0a47e4419402db6e03945e89e14bf0c2e1dc1c4430c373126e47
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## 3.0.0
2
+ - 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
1
3
  # 2.0.4
2
4
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
3
5
  # 2.0.3
data/Gemfile CHANGED
@@ -1,2 +1,4 @@
1
1
  source 'https://rubygems.org'
2
- gemspec
2
+
3
+ # Specify your gem's dependencies in logstash-mass_effect.gemspec
4
+ gemspec
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -56,7 +56,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
56
56
  ```
57
57
  - Install plugin
58
58
  ```sh
59
+ # Logstash 2.3 and higher
60
+ bin/logstash-plugin install --no-verify
61
+
62
+ # Prior to Logstash 2.3
59
63
  bin/plugin install --no-verify
64
+
60
65
  ```
61
66
  - Run Logstash with your plugin
62
67
  ```sh
@@ -74,7 +79,12 @@ gem build logstash-filter-awesome.gemspec
74
79
  ```
75
80
  - Install the plugin from the Logstash home
76
81
  ```sh
77
- bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
82
+ # Logstash 2.3 and higher
83
+ bin/logstash-plugin install --no-verify
84
+
85
+ # Prior to Logstash 2.3
86
+ bin/plugin install --no-verify
87
+
78
88
  ```
79
89
  - Start Logstash and proceed to test the plugin
80
90
 
@@ -1,10 +1,10 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-opentsdb'
4
- s.version = '2.0.4'
4
+ s.version = '3.0.0'
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
- s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
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"
8
8
  s.authors = ["Elastic"]
9
9
  s.email = 'info@elastic.co'
10
10
  s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
@@ -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", "~> 1.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
24
24
 
25
25
  s.add_development_dependency 'logstash-devutils'
26
26
  end
metadata CHANGED
@@ -1,44 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-opentsdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2016-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: logstash-core-plugin-api
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - "~>"
17
18
  - !ruby/object:Gem::Version
18
- version: '1.0'
19
- name: logstash-core-plugin-api
20
- prerelease: false
19
+ version: '2.0'
21
20
  type: :runtime
21
+ prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
+ name: logstash-devutils
28
29
  requirement: !ruby/object:Gem::Requirement
29
30
  requirements:
30
31
  - - ">="
31
32
  - !ruby/object:Gem::Version
32
33
  version: '0'
33
- name: logstash-devutils
34
- prerelease: false
35
34
  type: :development
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: '0'
41
- description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
41
+ description: This gem is a Logstash plugin required to be installed on top of the
42
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
43
+ gem is not a stand-alone program
42
44
  email: info@elastic.co
43
45
  executables: []
44
46
  extensions: []
@@ -59,7 +61,7 @@ licenses:
59
61
  metadata:
60
62
  logstash_plugin: 'true'
61
63
  logstash_group: output
62
- post_install_message:
64
+ post_install_message:
63
65
  rdoc_options: []
64
66
  require_paths:
65
67
  - lib
@@ -74,9 +76,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
76
  - !ruby/object:Gem::Version
75
77
  version: '0'
76
78
  requirements: []
77
- rubyforge_project:
78
- rubygems_version: 2.4.8
79
- signing_key:
79
+ rubyforge_project:
80
+ rubygems_version: 2.5.1
81
+ signing_key:
80
82
  specification_version: 4
81
83
  summary: This output allows you to pull metrics from your logs and ship them to opentsdb
82
84
  test_files: