logstash-output-statsd 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 +19 -8
- data/lib/logstash/outputs/statsd.rb +1 -4
- data/logstash-output-statsd.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: 9da4d83403181dcddc46697b046a29321ff02474
|
|
4
|
+
data.tar.gz: 66dbca4688675a6180443f409fa54a9f8fbff105
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2863dd3fea7baa518f443b2df42dd83a879df343fdcca92ce410b0d4cf9c76a0e277a3159fee005fc1ec179da778b6fe5c2700bac8e20a9b60a15b59b5046fd2
|
|
7
|
+
data.tar.gz: 31b1a728959fdd715d8488ddd6cfd6a8eec7826c1069bffbaa26b133883acd6c56b5c7d27ba2b90f07884826643704f3d5792ad6ce4a1a205d3260da158101b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,32 @@
|
|
|
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.7
|
|
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.6
|
|
17
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
|
18
|
+
|
|
9
19
|
## 2.0.5
|
|
10
20
|
- Doc improvements.
|
|
11
21
|
|
|
12
22
|
## 2.0.2
|
|
13
23
|
- Avoid rspec.configure global after and before :all blocks
|
|
24
|
+
|
|
14
25
|
## 2.0.0
|
|
15
26
|
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
|
16
27
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
|
17
28
|
- Dependency on logstash-core update to 2.0
|
|
18
29
|
|
|
19
|
-
|
|
20
|
-
|
|
30
|
+
## 1.1.0
|
|
31
|
+
- improved test design to be more rspec3 friendly, including the usage
|
|
21
32
|
of random ports to avoid colisions in integration test.
|
|
@@ -88,13 +88,10 @@ class LogStash::Outputs::Statsd < LogStash::Outputs::Base
|
|
|
88
88
|
# A gauge metric. `metric_name => gauge` as hash. `%{fieldname}` substitutions are
|
|
89
89
|
# allowed in the metric names.
|
|
90
90
|
config :gauge, :validate => :hash, :default => {}
|
|
91
|
-
|
|
91
|
+
|
|
92
92
|
# The sample rate for the metric.
|
|
93
93
|
config :sample_rate, :validate => :number, :default => 1
|
|
94
94
|
|
|
95
|
-
# Enable debugging.
|
|
96
|
-
config :debug, :validate => :boolean, :default => false, :deprecated => "This setting was never used by this plugin. It will be removed soon."
|
|
97
|
-
|
|
98
95
|
public
|
|
99
96
|
def register
|
|
100
97
|
require "statsd"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-statsd'
|
|
4
|
-
s.version = '3.
|
|
4
|
+
s.version = '3.1.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Send metrics to StatsD"
|
|
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
|
s.add_runtime_dependency 'logstash-input-generator'
|
|
25
25
|
|
|
26
26
|
s.add_runtime_dependency 'statsd-ruby', ['1.2.0']
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-statsd
|
|
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:
|
|
@@ -104,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
110
|
version: '0'
|
|
105
111
|
requirements: []
|
|
106
112
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
113
|
+
rubygems_version: 2.6.3
|
|
108
114
|
signing_key:
|
|
109
115
|
specification_version: 4
|
|
110
116
|
summary: Send metrics to StatsD
|