rack-dogstatsd 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0404a6960c09defa7282896d5016a20cad382381
4
+ data.tar.gz: 7c88b3019afb81155d3a5a5dfa61f7389223d010
5
+ SHA512:
6
+ metadata.gz: 8e396706bafeedbeae8cae578147997743db85486d6684e1206e115e8de3fb51bcf9bf30f701cceac3477898f891d1f98a52f5f7637e7eef9edd8604365ed5dc
7
+ data.tar.gz: d349a428067759b069f2544c7b5bf9c9a41a3657ab6e409658ddfcd4cb5ecfc4d03135fd8e8ef2977409a7ca63a4b871269bde7b6c8df5b5f707a45555b54ec3
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.sw?
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rack-dogstatsd.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 James Bowes
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # Rack::Dogstatsd
2
+
3
+ A Rack middleware for sending metrics to DataDog's Statsd implementation.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rack-dogstatsd'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install rack-dogstatsd
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ require 'rack/dogstatsd'
25
+
26
+ use Rack::Dogstatsd
27
+ ```
28
+
29
+ By default metrics are sent to `localhost:8125`
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jbowes/rack-dogstatsd.
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
39
+
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,38 @@
1
+ require 'statsd'
2
+
3
+ module Rack
4
+ class DogStatsd
5
+
6
+ def initialize(app, options = {})
7
+ @app = app
8
+
9
+ host = options[:host] || 'localhost'
10
+ port = options[:port] || 8125
11
+ @statsd = options[:statsd] || Statsd.new(host, port, **options)
12
+ @metric = options[:metric] || 'rack-dogstatsd.response.time'
13
+ end
14
+
15
+ def call(env)
16
+ start = Time.now
17
+
18
+ status, header, body = @app.call env
19
+
20
+ path = env['PATH_INFO']
21
+
22
+ routing_args = env['rack.routing_args'] || {}
23
+ path = path.dup.tap do |path|
24
+ routing_args.except(:format, :namespace, :catch).each do |param, arg|
25
+ path.sub!(arg.to_s, ":#{param}")
26
+ end
27
+ end
28
+
29
+ @statsd.timing(@metric, (Time.now - start) * 1000, tags: [
30
+ "path:#{ path }",
31
+ "method:#{ env["REQUEST_METHOD"].downcase }",
32
+ "status:#{ status }"
33
+ ])
34
+
35
+ [status, header, body]
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rack/dogstatsd/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rack-dogstatsd"
8
+ spec.version = Rack::DogStatsd::VERSION
9
+ spec.authors = ["James Bowes"]
10
+ spec.email = ["jbowes@repl.ca"]
11
+
12
+ spec.summary = %q{Rack middleware for dogstatsd}
13
+ spec.description = %q{Rack middleware for dogstatsd}
14
+ spec.homepage = "https://github.com/jbowes/rack-dogstatsd"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_runtime_dependency 'dogstatsd-ruby', '~> 1.5', '>= 1.5.0'
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.10"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rack-dogstatsd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - James Bowes
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-10-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dogstatsd-ruby
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.5.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.5'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.5.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.10'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.10'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '10.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '10.0'
61
+ description: Rack middleware for dogstatsd
62
+ email:
63
+ - jbowes@repl.ca
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - ".gitignore"
69
+ - Gemfile
70
+ - LICENSE.txt
71
+ - README.md
72
+ - Rakefile
73
+ - lib/rack/dogstatsd.rb
74
+ - rack-dogstatsd.gemspec
75
+ homepage: https://github.com/jbowes/rack-dogstatsd
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.4.5
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Rack middleware for dogstatsd
99
+ test_files: []