newrelic-thor 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e0a7f4de76ca7d8cadc94bb15f330c8f1eaa8cea
4
+ data.tar.gz: a1278840056cc3b3365d14e5ecc293c69259225c
5
+ SHA512:
6
+ metadata.gz: 1ef8cdc0876fa8f61a98efda1085be63c6911789d93b2b3f631be3476af9e19f0640444925e3d8b756db9512bcf3a3360605778358654791ce9c26cf6b580989
7
+ data.tar.gz: 1f9a6d4a2a1074bcc04c3d29b6ea258c98fb3c178e9c413d776814a642b7bb6b01e9dc072e973404b0b1274c542d65156173c0ca6a1167100a21dbea3ca093fb
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,6 @@
1
+ ## Contribution Guidelines
2
+ 1. Fork the repository
3
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
4
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
5
+ 4. Push to the branch (`git push origin my-new-feature`)
6
+ 5. Create new Pull Request
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in newrelic-thor.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 The Garage
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,27 @@
1
+ # Newrelic::Thor
2
+ > NewRelic instrumentation to Thor tasks
3
+
4
+ Introspect performance of Thor tasks with NewRelic performance monitoring.
5
+
6
+ Inspired by the [newrelic-rake gem](https://github.com/flyerhzm/newrelic-rake)
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ gem 'newrelic-thor'
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ ## Usage
19
+
20
+ Instrumentation is automatically loaded once you require the gem!
21
+ Can't get much easier then that!
22
+
23
+ ## Contributing
24
+
25
+ Patches are always welcome and thank you to all [project contributors](https://github.com/thegarage/newrelic-thor/graphs/contributors)!
26
+
27
+ Interested in contributing? Review the project [contribution guidelines](CONTRIBUTING.md) and get started!
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,70 @@
1
+ require "thor"
2
+ require 'new_relic/agent/method_tracer'
3
+ require "newrelic/thor/version"
4
+
5
+ module NewRelic
6
+ module Thor
7
+ class << self
8
+ def started?
9
+ !!@started
10
+ end
11
+ def start
12
+ return if started?
13
+ ::NewRelic::Agent.manual_start(:dispatcher => :thor)
14
+ @started = true
15
+ end
16
+ def disabled?
17
+ !!::NewRelic::Control.instance['disable_thor']
18
+ end
19
+ end
20
+
21
+ module Instrumentation
22
+ BLACKLISTED_COMMAND_NAMES = %w{ help }
23
+
24
+ def self.included(base)
25
+ base.class_eval do
26
+ include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation
27
+
28
+ no_commands do
29
+ alias_method :invoke_command_original, :invoke_command
30
+ def invoke_command(*args)
31
+ command = args.first
32
+ return unless perform_trace_for_command?(command)
33
+ ::NewRelic::Thor.start
34
+ trace_options = {
35
+ :class_name => self.class.name,
36
+ :name => command.name,
37
+ :category => "OtherTransaction/Thor"
38
+ }
39
+ perform_action_with_newrelic_trace(trace_options) do
40
+ invoke_command_original(*args)
41
+ end
42
+ end
43
+ end
44
+
45
+ private
46
+
47
+ def perform_trace_for_command?(command)
48
+ !BLACKLISTED_COMMAND_NAMES.include?(command.name)
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+
56
+ DependencyDetection.defer do
57
+ @name = :thor
58
+
59
+ depends_on do
60
+ defined?(::Thor) && !::NewRelic::Thor.disabled?
61
+ end
62
+
63
+ executes do
64
+ ::NewRelic::Agent.logger.info 'Installing Thor instrumentation'
65
+ end
66
+
67
+ executes do
68
+ ::Thor.send(:include, ::NewRelic::Thor::Instrumentation)
69
+ end
70
+ end
@@ -0,0 +1,5 @@
1
+ module Newrelic
2
+ module Thor
3
+ VERSION = "0.0.1"
4
+ end
5
+ 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 'newrelic/thor/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "newrelic-thor"
8
+ spec.version = Newrelic::Thor::VERSION
9
+ spec.authors = ["Ryan Sonnek"]
10
+ spec.email = ["ryan@codecrate.com"]
11
+ spec.description = %q{NewRelic instrumentation to Thor tasks}
12
+ spec.summary = %q{Introspect performance of Thor tasks with NewRelic performance monitoring}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency 'thor'
22
+ spec.add_dependency 'newrelic_rpm', '>= 3.1.0'
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.3"
25
+ spec.add_development_dependency "rake"
26
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: newrelic-thor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Sonnek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: newrelic_rpm
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.1.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 3.1.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.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: NewRelic instrumentation to Thor tasks
70
+ email:
71
+ - ryan@codecrate.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - CONTRIBUTING.md
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - lib/newrelic/thor.rb
83
+ - lib/newrelic/thor/version.rb
84
+ - newrelic-thor.gemspec
85
+ homepage: ''
86
+ licenses:
87
+ - MIT
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.0.14
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: Introspect performance of Thor tasks with NewRelic performance monitoring
109
+ test_files: []