newrelic_rpm 2.13.5.beta3 → 2.13.5.beta4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of newrelic_rpm might be problematic. Click here for more details.
- data/lib/new_relic/collection_helper.rb +1 -1
- data/lib/new_relic/local_environment.rb +1 -1
- data/lib/new_relic/rack/developer_mode.rb +5 -5
- data/lib/new_relic/version.rb +1 -1
- data/newrelic_rpm.gemspec +3 -3
- data/test/new_relic/agent/collection_helper_test.rb +2 -2
- data/test/new_relic/control_test.rb +1 -0
- metadata +292 -270
@@ -33,7 +33,7 @@ module NewRelic
|
|
33
33
|
# this is for 1.9.1, where strings no longer have Enumerable
|
34
34
|
backtrace = backtrace.split("\n") if String === backtrace
|
35
35
|
# strip newrelic from the trace
|
36
|
-
backtrace = backtrace.reject {|line| line =~ /
|
36
|
+
backtrace = backtrace.reject {|line| line =~ /new_?relic/ }
|
37
37
|
# rename methods back to their original state
|
38
38
|
# GJV - 4/6/10 - adding .to_s call since we were seeing line as a Fixnum in some cases
|
39
39
|
backtrace = backtrace.collect {|line| line.to_s.gsub(/_without_(newrelic|trace)/, "")}
|
@@ -21,20 +21,20 @@ module NewRelic
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def call(env)
|
24
|
-
return @app.call(env) unless /^\/newrelic/ =~ Rack::Request.new(env).path_info
|
24
|
+
return @app.call(env) unless /^\/newrelic/ =~ ::Rack::Request.new(env).path_info
|
25
25
|
dup._call(env)
|
26
26
|
end
|
27
27
|
|
28
28
|
protected
|
29
29
|
|
30
30
|
def _call(env)
|
31
|
-
@req = Rack::Request.new(env)
|
31
|
+
@req = ::Rack::Request.new(env)
|
32
32
|
@rendered = false
|
33
33
|
case @req.path_info
|
34
34
|
when /profile/
|
35
35
|
profile
|
36
36
|
when /file/
|
37
|
-
Rack::File.new(VIEW_PATH).call(env)
|
37
|
+
::Rack::File.new(VIEW_PATH).call(env)
|
38
38
|
when /index/
|
39
39
|
index
|
40
40
|
when /threads/
|
@@ -67,7 +67,7 @@ module NewRelic
|
|
67
67
|
|
68
68
|
def reset
|
69
69
|
NewRelic::Agent.instance.transaction_sampler.reset!
|
70
|
-
Rack::Response.new{|r| r.redirect('/newrelic/')}.finish
|
70
|
+
::Rack::Response.new{|r| r.redirect('/newrelic/')}.finish
|
71
71
|
end
|
72
72
|
|
73
73
|
def explain_sql
|
@@ -136,7 +136,7 @@ module NewRelic
|
|
136
136
|
body = render_without_layout(view, binding)
|
137
137
|
end
|
138
138
|
if add_rack_array
|
139
|
-
Rack::Response.new(body).finish
|
139
|
+
::Rack::Response.new(body).finish
|
140
140
|
else
|
141
141
|
body
|
142
142
|
end
|
data/lib/new_relic/version.rb
CHANGED
@@ -4,7 +4,7 @@ module NewRelic
|
|
4
4
|
MAJOR = 2
|
5
5
|
MINOR = 13
|
6
6
|
TINY = 5
|
7
|
-
BUILD = '
|
7
|
+
BUILD = 'beta4' #'0' # Set to nil for a release, 'beta1', 'alpha', etc for prerelease builds
|
8
8
|
STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
|
9
9
|
end
|
10
10
|
|
data/newrelic_rpm.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{newrelic_rpm}
|
8
|
-
s.version = "2.13.5.
|
8
|
+
s.version = "2.13.5.beta4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Bill Kayser", "Justin George"]
|
12
|
-
s.date = %q{2011-03-
|
12
|
+
s.date = %q{2011-03-07}
|
13
13
|
s.description = %q{New Relic RPM is a Ruby performance management system, developed by
|
14
14
|
New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
|
15
15
|
information about the performance of your Ruby on Rails or Merb
|
@@ -271,7 +271,7 @@ for instructions for previous versions
|
|
271
271
|
}
|
272
272
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "New Relic Ruby Performance Monitoring Agent"]
|
273
273
|
s.require_paths = ["lib"]
|
274
|
-
s.rubygems_version = %q{1.5.
|
274
|
+
s.rubygems_version = %q{1.5.2}
|
275
275
|
s.summary = %q{New Relic Ruby Performance Monitoring Agent}
|
276
276
|
|
277
277
|
if s.respond_to? :specification_version then
|
@@ -117,8 +117,8 @@ class NewRelic::Agent::CollectionHelperTest < Test::Unit::TestCase
|
|
117
117
|
#puts e.backtrace.join("\n")
|
118
118
|
#puts "\n\n"
|
119
119
|
clean_trace = strip_nr_from_backtrace(e.backtrace)
|
120
|
-
assert_equal 0, clean_trace.grep(/newrelic_rpm/).size, clean_trace.
|
121
|
-
assert_equal 0, clean_trace.grep(/trace/).size, clean_trace.
|
120
|
+
assert_equal 0, clean_trace.grep(/newrelic_rpm/).size, clean_trace.join("\n")
|
121
|
+
assert_equal 0, clean_trace.grep(/trace/).size, clean_trace.join("\n")
|
122
122
|
assert (clean_trace.grep(/find/).size >= 3), "should see at least three frames with 'find' in them (#{e}): \n#{clean_trace.join("\n")}"
|
123
123
|
ensure
|
124
124
|
ActiveRecordFixtures.teardown
|
@@ -119,6 +119,7 @@ class NewRelic::ControlTest < Test::Unit::TestCase
|
|
119
119
|
assert_equal 4.4, NewRelic::Agent::Agent.instance.instance_variable_get('@slowest_transaction_threshold')
|
120
120
|
end
|
121
121
|
def test_log_file_name
|
122
|
+
NewRelic::Control.instance.setup_log
|
122
123
|
assert_match /newrelic_agent.log$/, c.instance_variable_get('@log_file')
|
123
124
|
end
|
124
125
|
|
metadata
CHANGED
@@ -1,52 +1,68 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 62196243
|
4
5
|
prerelease: 7
|
5
|
-
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 13
|
9
|
+
- 5
|
10
|
+
- beta
|
11
|
+
- 4
|
12
|
+
version: 2.13.5.beta4
|
6
13
|
platform: ruby
|
7
14
|
authors:
|
8
|
-
|
9
|
-
|
15
|
+
- Bill Kayser
|
16
|
+
- Justin George
|
10
17
|
autorequire:
|
11
18
|
bindir: bin
|
12
19
|
cert_chain: []
|
13
20
|
|
14
|
-
date: 2011-03-
|
21
|
+
date: 2011-03-07 00:00:00 -08:00
|
15
22
|
default_executable:
|
16
23
|
dependencies:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
name: jeweler
|
26
|
+
prerelease: false
|
27
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
hash: 3
|
33
|
+
segments:
|
34
|
+
- 0
|
35
|
+
version: "0"
|
36
|
+
type: :development
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: mocha
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
type: :development
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: shoulda
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 3
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
type: :development
|
65
|
+
version_requirements: *id003
|
50
66
|
description: |
|
51
67
|
New Relic RPM is a Ruby performance management system, developed by
|
52
68
|
New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
|
@@ -57,232 +73,232 @@ description: |
|
|
57
73
|
|
58
74
|
email: support@newrelic.com
|
59
75
|
executables:
|
60
|
-
|
61
|
-
|
62
|
-
|
76
|
+
- mongrel_rpm
|
77
|
+
- newrelic
|
78
|
+
- newrelic_cmd
|
63
79
|
extensions: []
|
64
80
|
|
65
81
|
extra_rdoc_files:
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
82
|
+
- CHANGELOG
|
83
|
+
- LICENSE
|
84
|
+
- README.rdoc
|
85
|
+
- newrelic.yml
|
70
86
|
files:
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
87
|
+
- CHANGELOG
|
88
|
+
- LICENSE
|
89
|
+
- README.rdoc
|
90
|
+
- bin/mongrel_rpm
|
91
|
+
- bin/newrelic
|
92
|
+
- bin/newrelic_cmd
|
93
|
+
- cert/cacert.pem
|
94
|
+
- install.rb
|
95
|
+
- lib/conditional_vendored_metric_parser.rb
|
96
|
+
- lib/new_relic/agent.rb
|
97
|
+
- lib/new_relic/agent/agent.rb
|
98
|
+
- lib/new_relic/agent/busy_calculator.rb
|
99
|
+
- lib/new_relic/agent/chained_call.rb
|
100
|
+
- lib/new_relic/agent/error_collector.rb
|
101
|
+
- lib/new_relic/agent/instrumentation/active_merchant.rb
|
102
|
+
- lib/new_relic/agent/instrumentation/acts_as_solr.rb
|
103
|
+
- lib/new_relic/agent/instrumentation/authlogic.rb
|
104
|
+
- lib/new_relic/agent/instrumentation/controller_instrumentation.rb
|
105
|
+
- lib/new_relic/agent/instrumentation/data_mapper.rb
|
106
|
+
- lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb
|
107
|
+
- lib/new_relic/agent/instrumentation/memcache.rb
|
108
|
+
- lib/new_relic/agent/instrumentation/merb/controller.rb
|
109
|
+
- lib/new_relic/agent/instrumentation/merb/errors.rb
|
110
|
+
- lib/new_relic/agent/instrumentation/metric_frame.rb
|
111
|
+
- lib/new_relic/agent/instrumentation/net.rb
|
112
|
+
- lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
|
113
|
+
- lib/new_relic/agent/instrumentation/queue_time.rb
|
114
|
+
- lib/new_relic/agent/instrumentation/rack.rb
|
115
|
+
- lib/new_relic/agent/instrumentation/rails/action_controller.rb
|
116
|
+
- lib/new_relic/agent/instrumentation/rails/action_web_service.rb
|
117
|
+
- lib/new_relic/agent/instrumentation/rails/active_record_instrumentation.rb
|
118
|
+
- lib/new_relic/agent/instrumentation/rails/errors.rb
|
119
|
+
- lib/new_relic/agent/instrumentation/rails3/action_controller.rb
|
120
|
+
- lib/new_relic/agent/instrumentation/rails3/active_record_instrumentation.rb
|
121
|
+
- lib/new_relic/agent/instrumentation/rails3/errors.rb
|
122
|
+
- lib/new_relic/agent/instrumentation/sequel.rb
|
123
|
+
- lib/new_relic/agent/instrumentation/sinatra.rb
|
124
|
+
- lib/new_relic/agent/instrumentation/sunspot.rb
|
125
|
+
- lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
|
126
|
+
- lib/new_relic/agent/method_tracer.rb
|
127
|
+
- lib/new_relic/agent/sampler.rb
|
128
|
+
- lib/new_relic/agent/samplers/cpu_sampler.rb
|
129
|
+
- lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb
|
130
|
+
- lib/new_relic/agent/samplers/memory_sampler.rb
|
131
|
+
- lib/new_relic/agent/samplers/object_sampler.rb
|
132
|
+
- lib/new_relic/agent/shim_agent.rb
|
133
|
+
- lib/new_relic/agent/stats_engine.rb
|
134
|
+
- lib/new_relic/agent/stats_engine/metric_stats.rb
|
135
|
+
- lib/new_relic/agent/stats_engine/samplers.rb
|
136
|
+
- lib/new_relic/agent/stats_engine/transactions.rb
|
137
|
+
- lib/new_relic/agent/transaction_sampler.rb
|
138
|
+
- lib/new_relic/agent/worker_loop.rb
|
139
|
+
- lib/new_relic/collection_helper.rb
|
140
|
+
- lib/new_relic/command.rb
|
141
|
+
- lib/new_relic/commands/deployments.rb
|
142
|
+
- lib/new_relic/commands/install.rb
|
143
|
+
- lib/new_relic/control.rb
|
144
|
+
- lib/new_relic/control/configuration.rb
|
145
|
+
- lib/new_relic/control/frameworks/external.rb
|
146
|
+
- lib/new_relic/control/frameworks/merb.rb
|
147
|
+
- lib/new_relic/control/frameworks/rails.rb
|
148
|
+
- lib/new_relic/control/frameworks/rails3.rb
|
149
|
+
- lib/new_relic/control/frameworks/ruby.rb
|
150
|
+
- lib/new_relic/control/frameworks/sinatra.rb
|
151
|
+
- lib/new_relic/control/instrumentation.rb
|
152
|
+
- lib/new_relic/control/logging_methods.rb
|
153
|
+
- lib/new_relic/control/profiling.rb
|
154
|
+
- lib/new_relic/control/server_methods.rb
|
155
|
+
- lib/new_relic/delayed_job_injection.rb
|
156
|
+
- lib/new_relic/histogram.rb
|
157
|
+
- lib/new_relic/local_environment.rb
|
158
|
+
- lib/new_relic/merbtasks.rb
|
159
|
+
- lib/new_relic/metric_data.rb
|
160
|
+
- lib/new_relic/metric_spec.rb
|
161
|
+
- lib/new_relic/metrics.rb
|
162
|
+
- lib/new_relic/noticed_error.rb
|
163
|
+
- lib/new_relic/rack/developer_mode.rb
|
164
|
+
- lib/new_relic/rack/metric_app.rb
|
165
|
+
- lib/new_relic/rack/mongrel_rpm.ru
|
166
|
+
- lib/new_relic/rack/newrelic.yml
|
167
|
+
- lib/new_relic/rack_app.rb
|
168
|
+
- lib/new_relic/recipes.rb
|
169
|
+
- lib/new_relic/stats.rb
|
170
|
+
- lib/new_relic/timer_lib.rb
|
171
|
+
- lib/new_relic/transaction_analysis.rb
|
172
|
+
- lib/new_relic/transaction_sample.rb
|
173
|
+
- lib/new_relic/url_rule.rb
|
174
|
+
- lib/new_relic/version.rb
|
175
|
+
- lib/newrelic_rpm.rb
|
176
|
+
- lib/tasks/all.rb
|
177
|
+
- lib/tasks/install.rake
|
178
|
+
- lib/tasks/tests.rake
|
179
|
+
- newrelic.yml
|
180
|
+
- newrelic_rpm.gemspec
|
181
|
+
- recipes/newrelic.rb
|
182
|
+
- test/active_record_fixtures.rb
|
183
|
+
- test/config/newrelic.yml
|
184
|
+
- test/config/test_control.rb
|
185
|
+
- test/new_relic/agent/active_record_instrumentation_test.rb
|
186
|
+
- test/new_relic/agent/add_method_tracer_test.rb
|
187
|
+
- test/new_relic/agent/agent_connect_test.rb
|
188
|
+
- test/new_relic/agent/agent_controller_test.rb
|
189
|
+
- test/new_relic/agent/agent_start_test.rb
|
190
|
+
- test/new_relic/agent/agent_start_worker_thread_test.rb
|
191
|
+
- test/new_relic/agent/agent_test_controller.rb
|
192
|
+
- test/new_relic/agent/apdex_from_server_test.rb
|
193
|
+
- test/new_relic/agent/busy_calculator_test.rb
|
194
|
+
- test/new_relic/agent/collection_helper_test.rb
|
195
|
+
- test/new_relic/agent/error_collector_notice_error_test.rb
|
196
|
+
- test/new_relic/agent/error_collector_test.rb
|
197
|
+
- test/new_relic/agent/memcache_instrumentation_test.rb
|
198
|
+
- test/new_relic/agent/method_tracer_test.rb
|
199
|
+
- test/new_relic/agent/method_tracer_trace_execution_scoped_test.rb
|
200
|
+
- test/new_relic/agent/metric_data_test.rb
|
201
|
+
- test/new_relic/agent/metric_frame_test.rb
|
202
|
+
- test/new_relic/agent/mock_scope_listener.rb
|
203
|
+
- test/new_relic/agent/net_instrumentation_test.rb
|
204
|
+
- test/new_relic/agent/queue_time_test.rb
|
205
|
+
- test/new_relic/agent/rpm_agent_test.rb
|
206
|
+
- test/new_relic/agent/stats_engine/metric_stats_test.rb
|
207
|
+
- test/new_relic/agent/stats_engine/samplers_test.rb
|
208
|
+
- test/new_relic/agent/stats_engine/stats_engine_test.rb
|
209
|
+
- test/new_relic/agent/task_instrumentation_test.rb
|
210
|
+
- test/new_relic/agent/testable_agent.rb
|
211
|
+
- test/new_relic/agent/transaction_sample_builder_test.rb
|
212
|
+
- test/new_relic/agent/transaction_sample_subtest_test.rb
|
213
|
+
- test/new_relic/agent/transaction_sample_test.rb
|
214
|
+
- test/new_relic/agent/transaction_sampler_test.rb
|
215
|
+
- test/new_relic/agent/worker_loop_test.rb
|
216
|
+
- test/new_relic/control_test.rb
|
217
|
+
- test/new_relic/deployments_api_test.rb
|
218
|
+
- test/new_relic/environment_test.rb
|
219
|
+
- test/new_relic/metric_spec_test.rb
|
220
|
+
- test/new_relic/rack/episodes_test.rb
|
221
|
+
- test/new_relic/shim_agent_test.rb
|
222
|
+
- test/new_relic/stats_test.rb
|
223
|
+
- test/new_relic/version_number_test.rb
|
224
|
+
- test/test_contexts.rb
|
225
|
+
- test/test_helper.rb
|
226
|
+
- ui/helpers/developer_mode_helper.rb
|
227
|
+
- ui/helpers/google_pie_chart.rb
|
228
|
+
- ui/views/layouts/newrelic_default.rhtml
|
229
|
+
- ui/views/newrelic/_explain_plans.rhtml
|
230
|
+
- ui/views/newrelic/_sample.rhtml
|
231
|
+
- ui/views/newrelic/_segment.rhtml
|
232
|
+
- ui/views/newrelic/_segment_limit_message.rhtml
|
233
|
+
- ui/views/newrelic/_segment_row.rhtml
|
234
|
+
- ui/views/newrelic/_show_sample_detail.rhtml
|
235
|
+
- ui/views/newrelic/_show_sample_sql.rhtml
|
236
|
+
- ui/views/newrelic/_show_sample_summary.rhtml
|
237
|
+
- ui/views/newrelic/_sql_row.rhtml
|
238
|
+
- ui/views/newrelic/_stack_trace.rhtml
|
239
|
+
- ui/views/newrelic/_table.rhtml
|
240
|
+
- ui/views/newrelic/explain_sql.rhtml
|
241
|
+
- ui/views/newrelic/file/images/arrow-close.png
|
242
|
+
- ui/views/newrelic/file/images/arrow-open.png
|
243
|
+
- ui/views/newrelic/file/images/blue_bar.gif
|
244
|
+
- ui/views/newrelic/file/images/file_icon.png
|
245
|
+
- ui/views/newrelic/file/images/gray_bar.gif
|
246
|
+
- ui/views/newrelic/file/images/new-relic-rpm-desktop.gif
|
247
|
+
- ui/views/newrelic/file/images/new_relic_rpm_desktop.gif
|
248
|
+
- ui/views/newrelic/file/images/textmate.png
|
249
|
+
- ui/views/newrelic/file/javascript/jquery-1.4.2.js
|
250
|
+
- ui/views/newrelic/file/javascript/transaction_sample.js
|
251
|
+
- ui/views/newrelic/file/stylesheets/style.css
|
252
|
+
- ui/views/newrelic/index.rhtml
|
253
|
+
- ui/views/newrelic/sample_not_found.rhtml
|
254
|
+
- ui/views/newrelic/show_sample.rhtml
|
255
|
+
- ui/views/newrelic/show_source.rhtml
|
256
|
+
- ui/views/newrelic/threads.rhtml
|
257
|
+
- vendor/gems/metric_parser-0.1.0.pre1/LICENSE
|
258
|
+
- vendor/gems/metric_parser-0.1.0.pre1/README
|
259
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb
|
260
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb
|
261
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb
|
262
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb
|
263
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb
|
264
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb
|
265
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb
|
266
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb
|
267
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb
|
268
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb
|
269
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb
|
270
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb
|
271
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb
|
272
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb
|
273
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb
|
274
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb
|
275
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb
|
276
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb
|
277
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb
|
278
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb
|
279
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb
|
280
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb
|
281
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb
|
282
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb
|
283
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb
|
284
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb
|
285
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb
|
286
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb
|
287
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb
|
288
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb
|
289
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb
|
290
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb
|
291
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb
|
292
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb
|
293
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb
|
294
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb
|
295
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb
|
296
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb
|
297
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb
|
298
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb
|
299
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb
|
300
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb
|
301
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb
|
286
302
|
has_rdoc: true
|
287
303
|
homepage: http://www.github.com/newrelic/rpm
|
288
304
|
licenses: []
|
@@ -314,24 +330,30 @@ post_install_message: |+
|
|
314
330
|
for instructions for previous versions
|
315
331
|
|
316
332
|
rdoc_options:
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
333
|
+
- --line-numbers
|
334
|
+
- --inline-source
|
335
|
+
- --title
|
336
|
+
- New Relic Ruby Performance Monitoring Agent
|
321
337
|
require_paths:
|
322
|
-
|
338
|
+
- lib
|
323
339
|
required_ruby_version: !ruby/object:Gem::Requirement
|
324
340
|
none: false
|
325
341
|
requirements:
|
326
|
-
|
327
|
-
|
328
|
-
|
342
|
+
- - ">="
|
343
|
+
- !ruby/object:Gem::Version
|
344
|
+
hash: 3
|
345
|
+
segments:
|
346
|
+
- 0
|
347
|
+
version: "0"
|
329
348
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
330
349
|
none: false
|
331
350
|
requirements:
|
332
|
-
|
333
|
-
|
334
|
-
|
351
|
+
- - ">="
|
352
|
+
- !ruby/object:Gem::Version
|
353
|
+
hash: 3
|
354
|
+
segments:
|
355
|
+
- 0
|
356
|
+
version: "0"
|
335
357
|
requirements: []
|
336
358
|
|
337
359
|
rubyforge_project:
|