logstash-output-graphite 3.0.1 → 3.1.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/CHANGELOG.md +18 -7
- data/lib/logstash/outputs/graphite.rb +0 -3
- data/logstash-output-graphite.gemspec +2 -2
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c18c98a8cac288b2239f9914c92c44b33c59dceb
|
|
4
|
+
data.tar.gz: 7525262db58187a70b9842326952349ef32373d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b31f638cf19bc0e93b204921ed76c94ec0091ecb78ac2e63e07e9006e50f4427a4ae905044820e47e5ddf38df75bc2c417c58804b7938db90c6abcb75866cb6
|
|
7
|
+
data.tar.gz: 0194522c5a0bbe93023d87e1b31da97f2cb43d4d169c0e185a14cab29086cecf4ff153aaade609bb25f6de290781fa998e60150472ea7b47d805ad1a61b4544a
|
data/CHANGELOG.md
CHANGED
|
@@ -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: Remove deprecated config `debug`.
|
|
6
|
+
|
|
1
7
|
## 3.0.1
|
|
2
|
-
|
|
8
|
+
- Republish all the gems under jruby.
|
|
9
|
+
|
|
3
10
|
## 3.0.0
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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.5
|
|
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.4
|
|
17
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
|
18
|
+
|
|
9
19
|
## 2.0.3
|
|
10
20
|
- Fixed empty/nil messages handling
|
|
11
21
|
|
|
@@ -18,4 +28,5 @@
|
|
|
18
28
|
- Added support for sprintf in field formatting
|
|
19
29
|
|
|
20
30
|
## 1.0.1
|
|
21
|
-
- Added support for nested hashes as values
|
|
31
|
+
- Added support for nested hashes as values
|
|
32
|
+
|
|
@@ -56,9 +56,6 @@ class LogStash::Outputs::Graphite < LogStash::Outputs::Base
|
|
|
56
56
|
# graphite since you probably have a cache layer infront of Logstash.
|
|
57
57
|
config :timestamp_field, :validate => :string, :default => '@timestamp'
|
|
58
58
|
|
|
59
|
-
# Enable debug output.
|
|
60
|
-
config :debug, :validate => :boolean, :default => false, :deprecated => "This setting was never used by this plugin. It will be removed soon."
|
|
61
|
-
|
|
62
59
|
# Defines the format of the metric string. The placeholder '*' will be
|
|
63
60
|
# replaced with the name of the actual metric.
|
|
64
61
|
# [source,ruby]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-graphite'
|
|
4
|
-
s.version = '3.
|
|
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 Graphite"
|
|
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", "
|
|
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
|
s.add_development_dependency 'logstash-input-generator'
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-graphite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
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-
|
|
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.
|
|
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.
|
|
32
|
+
version: '2.99'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
|
29
35
|
requirements:
|
|
@@ -119,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
125
|
version: '0'
|
|
120
126
|
requirements: []
|
|
121
127
|
rubyforge_project:
|
|
122
|
-
rubygems_version: 2.
|
|
128
|
+
rubygems_version: 2.6.3
|
|
123
129
|
signing_key:
|
|
124
130
|
specification_version: 4
|
|
125
131
|
summary: This output allows you to pull metrics from your logs and ship them to Graphite
|