logstash-output-statsd 2.0.2 → 2.0.3
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/logstash-output-statsd.gemspec +1 -1
- data/spec/outputs/statsd_spec.rb +6 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 731ea2d5dfb64724d5f07212bfa9dd136ce57bd4
|
4
|
+
data.tar.gz: 6cdfe52c4f214ae7acfb63ff1a30daf978858c5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a58762271372ace32edf56b9e7ecc1e675dc24514efa5a9e945a17d279bf8fdf51104a5ef3aa0ae4cd094cae5f4ad5b2fd64f794491c3f9900aa9a9ecb3596bd
|
7
|
+
data.tar.gz: 4369ac85c7208228cd118826c705db9fd64de701f9d64135909bab721a0576378c58d472f3350649a8598f23c6f85b8b1fff5fc642f48b25ccc7e7ecde0445a8
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-statsd'
|
4
|
-
s.version = '2.0.
|
4
|
+
s.version = '2.0.3'
|
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/plugin install gemname. This gem is not a stand-alone program"
|
data/spec/outputs/statsd_spec.rb
CHANGED
@@ -43,7 +43,12 @@ describe LogStash::Outputs::Statsd do
|
|
43
43
|
|
44
44
|
it "should receive data send to the server" do
|
45
45
|
subject.receive(event)
|
46
|
-
|
46
|
+
# Since we are dealing with threads and networks,
|
47
|
+
# we might experience delays or timing issues.
|
48
|
+
# lets try a few times before giving up completely.
|
49
|
+
try {
|
50
|
+
expect(server.received).to include("logstash.spec.foo.bar:0.1|c")
|
51
|
+
}
|
47
52
|
end
|
48
53
|
|
49
54
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-statsd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|