em-statsd-ruby 1.0.0
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 +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +2 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +72 -0
- data/LICENSE.md +7 -0
- data/README.md +61 -0
- data/Rakefile +15 -0
- data/em-statsd-ruby.gemspec +27 -0
- data/lib/em-statsd-ruby.rb +1 -0
- data/lib/event_machine/em_statsd/tcp_wrapper.rb +27 -0
- data/lib/event_machine/em_statsd/udp_wrapper.rb +28 -0
- data/lib/event_machine/statsd.rb +39 -0
- data/lib/event_machine/version.rb +5 -0
- data/spec/em_statsd_spec.rb +97 -0
- data/spec/spec_helper.rb +43 -0
- metadata +106 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7cf6c6bbc27006385cfcb4914c9a9046bfb648b6
|
4
|
+
data.tar.gz: 2f7a0a544a2f9ff09dd5d1aa56a5e6ba788ae968
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 588c14ae7c8119846086786ed6da7cd8b279840df39e0d35f55da20d5b811aa433f661d0fe788cb6927938a2d0f264aa04e938983aad5cdbae765cfaf64db755
|
7
|
+
data.tar.gz: 0ac7740c61581d6bf8bd749377515760e33d6217ea59a3c955f10217461695e7a61a94d920be8c6f8055ad2d58d7570455d25cef9ddf60ce8fc8d88a192a4f30
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
em-statsd-ruby (1.0.0)
|
5
|
+
eventmachine (~> 1.2)
|
6
|
+
statsd-ruby (= 1.3.0)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
coveralls (0.8.10)
|
12
|
+
json (~> 1.8)
|
13
|
+
rest-client (>= 1.6.8, < 2)
|
14
|
+
simplecov (~> 0.11.0)
|
15
|
+
term-ansicolor (~> 1.3)
|
16
|
+
thor (~> 0.19.1)
|
17
|
+
tins (~> 1.6.0)
|
18
|
+
diff-lcs (1.2.5)
|
19
|
+
docile (1.1.5)
|
20
|
+
domain_name (0.5.20160310)
|
21
|
+
unf (>= 0.0.5, < 1.0.0)
|
22
|
+
eventmachine (1.2.0.1)
|
23
|
+
http-cookie (1.0.2)
|
24
|
+
domain_name (~> 0.5)
|
25
|
+
json (1.8.3)
|
26
|
+
mime-types (2.99.1)
|
27
|
+
netrc (0.11.0)
|
28
|
+
rake (11.1.2)
|
29
|
+
rest-client (1.8.0)
|
30
|
+
http-cookie (>= 1.0.2, < 2.0)
|
31
|
+
mime-types (>= 1.16, < 3.0)
|
32
|
+
netrc (~> 0.7)
|
33
|
+
rspec (3.4.0)
|
34
|
+
rspec-core (~> 3.4.0)
|
35
|
+
rspec-expectations (~> 3.4.0)
|
36
|
+
rspec-mocks (~> 3.4.0)
|
37
|
+
rspec-core (3.4.4)
|
38
|
+
rspec-support (~> 3.4.0)
|
39
|
+
rspec-expectations (3.4.0)
|
40
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
+
rspec-support (~> 3.4.0)
|
42
|
+
rspec-mocks (3.4.1)
|
43
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
+
rspec-support (~> 3.4.0)
|
45
|
+
rspec-support (3.4.1)
|
46
|
+
simplecov (0.11.1)
|
47
|
+
docile (~> 1.1.0)
|
48
|
+
json (~> 1.8)
|
49
|
+
simplecov-html (~> 0.10.0)
|
50
|
+
simplecov-html (0.10.0)
|
51
|
+
statsd-ruby (1.3.0)
|
52
|
+
term-ansicolor (1.3.2)
|
53
|
+
tins (~> 1.0)
|
54
|
+
thor (0.19.1)
|
55
|
+
tins (1.6.0)
|
56
|
+
unf (0.1.4)
|
57
|
+
unf_ext
|
58
|
+
unf_ext (0.0.7.2)
|
59
|
+
|
60
|
+
PLATFORMS
|
61
|
+
ruby
|
62
|
+
|
63
|
+
DEPENDENCIES
|
64
|
+
bundler (~> 1.0)
|
65
|
+
coveralls
|
66
|
+
em-statsd-ruby!
|
67
|
+
rake
|
68
|
+
rspec
|
69
|
+
simplecov
|
70
|
+
|
71
|
+
BUNDLED WITH
|
72
|
+
1.11.2
|
data/LICENSE.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) Valery Mayatsky
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
# EventMachine Statsd
|
2
|
+
[](https://travis-ci.org/Arugin/em-statsd-ruby)
|
3
|
+
[](https://travis-ci.org/Arugin/em-statsd-ruby)
|
4
|
+
|
5
|
+
EM::Statsd is a simple async wrapper around the ruby Statsd client.
|
6
|
+
It uses EventMachine Connection class to push data around.
|
7
|
+
|
8
|
+
It is written for `statsd-ruby` v1.3.0
|
9
|
+
|
10
|
+
For older versions of `statsd-ruby` use [old wrapper](https://rubygems.org/gems/em-statsd/versions/1.0.0)
|
11
|
+
|
12
|
+
Getting started
|
13
|
+
---------------
|
14
|
+
|
15
|
+
1. Add `em-statsd-ruby` to your `Gemfile` and `bundle install`:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem 'em-statsd-ruby'
|
19
|
+
```
|
20
|
+
|
21
|
+
2. Require it in code and use:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require 'eventmachine'
|
25
|
+
require 'em-statsd-ruby'
|
26
|
+
|
27
|
+
EM.run do
|
28
|
+
statsd = EM::Statsd.new('127.0.0.1', 8125)
|
29
|
+
statsd.increment 'daddy'
|
30
|
+
end
|
31
|
+
```
|
32
|
+
3. If you prefer tcp:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
statsd = EM::Statsd.new('127.0.0.1', 8125, :tcp)
|
36
|
+
```
|
37
|
+
|
38
|
+
4. It supports batch too:
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
EM.run do
|
42
|
+
statsd = EM::Statsd.new('127.0.0.1', 8125)
|
43
|
+
statsd.batch do |s|
|
44
|
+
s.increment 'daddy'
|
45
|
+
s.count 'kitty', 5
|
46
|
+
end
|
47
|
+
end
|
48
|
+
```
|
49
|
+
or
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
EM.run do
|
53
|
+
statsd = EM::Batch(EM::Statsd.new('127.0.0.1', 8125))
|
54
|
+
statsd.increment 'daddy'
|
55
|
+
statsd.count 'kitty', 5
|
56
|
+
end
|
57
|
+
```
|
58
|
+
|
59
|
+
## Copyright
|
60
|
+
|
61
|
+
Copyright (c) Valery Mayatsky. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
|
3
|
+
require 'rspec/core/rake_task'
|
4
|
+
RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
task :default => :spec
|
7
|
+
task :test => :spec
|
8
|
+
|
9
|
+
require 'yard'
|
10
|
+
namespace :doc do
|
11
|
+
YARD::Rake::YardocTask.new do |task|
|
12
|
+
task.files = ['LICENSE.md', 'lib/**/*.rb']
|
13
|
+
task.options = ['--markup', 'markdown']
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'event_machine/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = 'em-statsd-ruby'
|
8
|
+
gem.version = EventMachine::Statsd::VERSION
|
9
|
+
gem.homepage = 'https://github.com/Arugin/em-statsd-ruby'
|
10
|
+
|
11
|
+
gem.author = 'Valery Mayatsky'
|
12
|
+
gem.email = 'valerymayatsky@gmail.com'
|
13
|
+
gem.description = 'An Event Machine wrapper around Ruby Statsd client.'
|
14
|
+
gem.summary = 'EM::Statsd is a simple async wrapper around the ruby Statsd client. It uses EventMachine Connection class to push data around.'
|
15
|
+
|
16
|
+
gem.add_runtime_dependency 'eventmachine', '~> 1.2'
|
17
|
+
gem.add_runtime_dependency 'statsd-ruby', '= 1.3.0'
|
18
|
+
gem.add_development_dependency 'bundler', '~> 1.0'
|
19
|
+
|
20
|
+
gem.license = 'MIT'
|
21
|
+
|
22
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
|
23
|
+
gem.files = `git ls-files`.split("\n")
|
24
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
25
|
+
|
26
|
+
gem.require_paths = ['lib']
|
27
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'event_machine/statsd'
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module EMStatsd
|
2
|
+
class TCPWrapper
|
3
|
+
|
4
|
+
attr_reader :connection
|
5
|
+
|
6
|
+
def initialize(host, port)
|
7
|
+
# eventmachine forces us to listen on a UDP socket even
|
8
|
+
# though we only
|
9
|
+
# want to send, so we'll just give it a junk address
|
10
|
+
@connection = EM.connect(host, port, EM::Connection)
|
11
|
+
end
|
12
|
+
|
13
|
+
def close
|
14
|
+
connection.close_connection_after_writing
|
15
|
+
end
|
16
|
+
|
17
|
+
def flush
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
def write(message)
|
22
|
+
connection.send_data(message)
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module EMStatsd
|
2
|
+
class UDPWrapper
|
3
|
+
|
4
|
+
attr_reader :connection
|
5
|
+
|
6
|
+
def initialize(host, port)
|
7
|
+
@host, @port = host, port
|
8
|
+
# eventmachine forces us to listen on a UDP socket even
|
9
|
+
# though we only
|
10
|
+
# want to send, so we'll just give it a junk address
|
11
|
+
@connection = EM.open_datagram_socket('0.0.0.0', 0, EM::Connection)
|
12
|
+
end
|
13
|
+
|
14
|
+
def close
|
15
|
+
connection.close_connection_after_writing
|
16
|
+
end
|
17
|
+
|
18
|
+
def flush
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
def write(message)
|
23
|
+
connection.send_datagram(message, @host, @port)
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'eventmachine'
|
2
|
+
require 'statsd-ruby'
|
3
|
+
|
4
|
+
require 'event_machine/em_statsd/udp_wrapper'
|
5
|
+
require 'event_machine/em_statsd/tcp_wrapper'
|
6
|
+
|
7
|
+
module EventMachine
|
8
|
+
class Statsd < ::Statsd
|
9
|
+
|
10
|
+
def initialize(*args)
|
11
|
+
super
|
12
|
+
end
|
13
|
+
|
14
|
+
def connect
|
15
|
+
@s_mu.synchronize do
|
16
|
+
begin
|
17
|
+
@socket.close if @socket
|
18
|
+
rescue
|
19
|
+
self.class.logger.error { 'Statsd: can not close connection' } if self.class.logger
|
20
|
+
end
|
21
|
+
|
22
|
+
case @protocol
|
23
|
+
when :tcp
|
24
|
+
@socket = EMStatsd::TCPWrapper.new host, port
|
25
|
+
else
|
26
|
+
@socket = EMStatsd::UDPWrapper.new host, port
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def send_to_socket(message)
|
32
|
+
socket.write(message)
|
33
|
+
rescue => boom
|
34
|
+
self.class.logger.error { "Statsd: #{boom.class} #{boom}" } if self.class.logger
|
35
|
+
nil
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
shared_examples_for 'a statsd' do
|
4
|
+
|
5
|
+
describe '#increment' do
|
6
|
+
|
7
|
+
it 'formats the message according to the statsd spec' do
|
8
|
+
em_statsd.increment('foobar')
|
9
|
+
expect(socket.recv).to eq ['foobar:1|c']
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
describe EM::Statsd do
|
17
|
+
before do
|
18
|
+
class EMStatsd::UDPWrapper
|
19
|
+
o, $VERBOSE = $VERBOSE, nil
|
20
|
+
alias initialize_old initialize
|
21
|
+
def initialize(*args)
|
22
|
+
|
23
|
+
end
|
24
|
+
$VERBOSE = o
|
25
|
+
end
|
26
|
+
|
27
|
+
class EMStatsd::TCPWrapper
|
28
|
+
o, $VERBOSE = $VERBOSE, nil
|
29
|
+
alias initialize_old initialize
|
30
|
+
def initialize(*args)
|
31
|
+
|
32
|
+
end
|
33
|
+
$VERBOSE = o
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
class EMStatsd::UDPWrapper
|
39
|
+
o, $VERBOSE = $VERBOSE, nil
|
40
|
+
alias initialize initialize_old
|
41
|
+
$VERBOSE = o
|
42
|
+
end
|
43
|
+
|
44
|
+
class EMStatsd::TCPWrapper
|
45
|
+
o, $VERBOSE = $VERBOSE, nil
|
46
|
+
alias initialize initialize_old
|
47
|
+
$VERBOSE = o
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
subject(:em_statsd) { EM::Statsd.new('localhost', 1234) }
|
52
|
+
|
53
|
+
|
54
|
+
let(:tcp_socket) { FakeTCPSocket.new }
|
55
|
+
|
56
|
+
before do
|
57
|
+
allow_any_instance_of(EMStatsd::TCPWrapper).to receive(:connection).and_return(tcp_socket)
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#initialize' do
|
61
|
+
it 'sets the host and port' do
|
62
|
+
expect(em_statsd.host).to eq 'localhost'
|
63
|
+
expect(em_statsd.port).to eq 1234
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'sets default the host to 127.0.0.1 and port to 8125' do
|
67
|
+
statsd = EM::Statsd.new
|
68
|
+
expect(statsd.host).to eq '127.0.0.1'
|
69
|
+
expect(statsd.port).to eq 8125
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'should set delimiter to period by default' do
|
73
|
+
expect(em_statsd.delimiter).to eq '.'
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context 'when udp' do
|
78
|
+
let(:socket) { FakeUDPSocket.new }
|
79
|
+
|
80
|
+
before { allow_any_instance_of(EMStatsd::UDPWrapper).to receive(:connection).and_return(socket) }
|
81
|
+
|
82
|
+
it_behaves_like 'a statsd'
|
83
|
+
end
|
84
|
+
|
85
|
+
context 'when tcp' do
|
86
|
+
subject(:em_statsd) { EM::Statsd.new('localhost', 1234, :tcp) }
|
87
|
+
|
88
|
+
let(:socket) { FakeTCPSocket.new }
|
89
|
+
|
90
|
+
before { allow_any_instance_of(EMStatsd::TCPWrapper).to receive(:connection).and_return(socket) }
|
91
|
+
|
92
|
+
it_behaves_like 'a statsd'
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
SimpleCov.start
|
3
|
+
|
4
|
+
require 'coveralls'
|
5
|
+
Coveralls.wear!
|
6
|
+
|
7
|
+
require 'em-statsd-ruby'
|
8
|
+
require 'rspec'
|
9
|
+
require 'logger'
|
10
|
+
|
11
|
+
class FakeUDPSocket
|
12
|
+
def initialize
|
13
|
+
@buffer = []
|
14
|
+
end
|
15
|
+
|
16
|
+
def send_datagram(message, _, _)
|
17
|
+
@buffer.push [message]
|
18
|
+
message.length
|
19
|
+
end
|
20
|
+
|
21
|
+
def recv
|
22
|
+
@buffer.shift
|
23
|
+
end
|
24
|
+
|
25
|
+
def clear
|
26
|
+
@buffer = []
|
27
|
+
end
|
28
|
+
|
29
|
+
def to_s
|
30
|
+
inspect
|
31
|
+
end
|
32
|
+
|
33
|
+
def inspect
|
34
|
+
"<#{self.class.name}: #{@buffer.inspect}>"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
class FakeTCPSocket < FakeUDPSocket
|
39
|
+
alias_method :readline, :recv
|
40
|
+
def send_data(message)
|
41
|
+
@buffer.push [message]
|
42
|
+
end
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: em-statsd-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Valery Mayatsky
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: eventmachine
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: statsd-ruby
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.3.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.0'
|
55
|
+
description: An Event Machine wrapper around Ruby Statsd client.
|
56
|
+
email: valerymayatsky@gmail.com
|
57
|
+
executables: []
|
58
|
+
extensions: []
|
59
|
+
extra_rdoc_files: []
|
60
|
+
files:
|
61
|
+
- ".coveralls.yml"
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- Gemfile.lock
|
67
|
+
- LICENSE.md
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- em-statsd-ruby.gemspec
|
71
|
+
- lib/em-statsd-ruby.rb
|
72
|
+
- lib/event_machine/em_statsd/tcp_wrapper.rb
|
73
|
+
- lib/event_machine/em_statsd/udp_wrapper.rb
|
74
|
+
- lib/event_machine/statsd.rb
|
75
|
+
- lib/event_machine/version.rb
|
76
|
+
- spec/em_statsd_spec.rb
|
77
|
+
- spec/spec_helper.rb
|
78
|
+
homepage: https://github.com/Arugin/em-statsd-ruby
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.4.5
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: EM::Statsd is a simple async wrapper around the ruby Statsd client. It uses
|
102
|
+
EventMachine Connection class to push data around.
|
103
|
+
test_files:
|
104
|
+
- spec/em_statsd_spec.rb
|
105
|
+
- spec/spec_helper.rb
|
106
|
+
has_rdoc:
|