datadoge 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b9b954be7e251cc96214f6eb4bb9955c7736fb9
4
- data.tar.gz: 7d4ed01c321a0aeb3c2e57fb9d5ca542c415284e
3
+ metadata.gz: e6d4b458577d235b0960b27e834264cb55c2451c
4
+ data.tar.gz: 5823b181e3534879d6c556c9bfad5a070d71c370
5
5
  SHA512:
6
- metadata.gz: 00be0831cdc1b0304780d5a08b8c6a6b7ea9b57d5a4b18b33b15bffc2eaf41f28a692a44dbc0d351526d85b10d1848bb780c9380f7a21b22930bb76fcad410ef
7
- data.tar.gz: f6a8fae2cb4934765990a3a81aa1d9ec8bf5a7f5cb733c7bcb81f5b241abd666e6ff486dc74332587ca6e8d820f63b0ad5acfa3618d29ca969aa6c510204f8a7
6
+ metadata.gz: 584ee00f3526c139e9ca9fb7618357af5baac1292772c2a804820793181233dd670f8574d9b1c36c4bc825eb262fe8d52ebdfadbb2bfb50ae018f302ab780834
7
+ data.tar.gz: 22f1a9eb18da873910e079950cf1ee5ab0b33e7c57c3714555303787ad9ac9e9a20c3e9cba4d7e2fb14cb3b939070a3a10bced3146f51c2276f4525982b89e93
data/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  *.rbc
3
3
  .bundle
4
4
  .config
5
+ .idea/
5
6
  .yardoc
6
7
  Gemfile.lock
7
8
  InstalledFiles
data/README.md CHANGED
@@ -1,9 +1,14 @@
1
1
  # Datadoge
2
2
 
3
- TODO: Write a gem description
3
+ This gem is notified of basic performance metrics for a Rails application, and sends the measurements to DataDog.
4
+
5
+ Many thanks to [mm53bar](https://github.com/mm53bar) for the groundwork laid in [this gist](https://gist.github.com/mm53bar/4674071).
4
6
 
5
7
  ## Installation
6
8
 
9
+ Install the [Datadog Agent](https://app.datadoghq.com/account/settings#agent) on your application server. This gem only
10
+ works on servers which have the Datadog Agent installed.
11
+
7
12
  Add this line to your application's Gemfile:
8
13
 
9
14
  gem 'datadoge'
@@ -18,11 +23,12 @@ Or install it yourself as:
18
23
 
19
24
  ## Usage
20
25
 
21
- TODO: Write usage instructions here
26
+ Performance metrics are only reported to Datadog from production environments which have the
27
+ [Datadog agent](https://app.datadoghq.com/account/settings#agent) installed.
22
28
 
23
29
  ## Contributing
24
30
 
25
- 1. Fork it ( https://github.com/[my-github-username]/datadoge/fork )
31
+ 1. Fork it ( https://github.com/metova/datadoge/fork )
26
32
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
33
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
34
  4. Push to the branch (`git push origin my-new-feature`)
data/datadoge.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Datadoge::VERSION
9
9
  spec.authors = ['Dave Lane']
10
10
  spec.email = ['dave.lane@metova.com']
11
- spec.summary = 'A simple integration of DataDog to report on Rails app performance.'
12
- spec.description = 'This gem is notified of basic performance metrics for a Rails application, and sends the measurements to DataDog.'
11
+ spec.summary = 'A simple integration of Datadog to report on Rails application performance.'
12
+ spec.description = 'This gem is notified of basic performance metrics for a Rails application, and sends the measurements to Datadog.'
13
13
  spec.homepage = ''
14
14
  spec.license = 'Apache'
15
15
 
@@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency 'rake', '~> 0'
23
23
 
24
24
  spec.add_runtime_dependency 'dogstatsd-ruby', '~> 0'
25
+ spec.add_runtime_dependency 'gem_config', '~> 0'
25
26
  end
data/lib/datadoge.rb CHANGED
@@ -1,7 +1,14 @@
1
- require "datadoge/version"
2
- require "statsd"
1
+ require 'datadoge/version'
2
+ require 'gem_config'
3
+ require 'statsd'
3
4
 
4
5
  module Datadoge
6
+ include GemConfig::Base
7
+
8
+ with_configuration do
9
+ has :environments, classes: Array, default: ['production']
10
+ end
11
+
5
12
  class Railtie < Rails::Railtie
6
13
  initializer "datadoge.configure_rails_initialization" do |app|
7
14
  $statsd = Statsd.new
@@ -22,7 +29,7 @@ module Datadoge
22
29
  end
23
30
 
24
31
  ActiveSupport::Notifications.subscribe /performance/ do |name, start, finish, id, payload|
25
- send_event_to_statsd(name, payload) if Rails.env == 'production'
32
+ send_event_to_statsd(name, payload) if Datadoge.configuration.environments.include?(Rails.env)
26
33
  end
27
34
 
28
35
  def send_event_to_statsd(name, payload)
@@ -1,3 +1,3 @@
1
1
  module Datadoge
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datadoge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Lane
@@ -52,8 +52,22 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: gem_config
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: This gem is notified of basic performance metrics for a Rails application,
56
- and sends the measurements to DataDog.
70
+ and sends the measurements to Datadog.
57
71
  email:
58
72
  - dave.lane@metova.com
59
73
  executables: []
@@ -91,5 +105,5 @@ rubyforge_project:
91
105
  rubygems_version: 2.2.0
92
106
  signing_key:
93
107
  specification_version: 4
94
- summary: A simple integration of DataDog to report on Rails app performance.
108
+ summary: A simple integration of Datadog to report on Rails application performance.
95
109
  test_files: []