newrelic_rpm 3.5.3.25 → 3.5.4.29.beta
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +23 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +5 -0
- data/lib/new_relic/version.rb +18 -2
- data/newrelic_rpm.gemspec.erb +1 -1
- data/test/fixtures/gemspec_no_build.rb +444 -0
- data/test/fixtures/gemspec_with_build.rb +444 -0
- data/test/fixtures/gemspec_with_build_and_stage.rb +444 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +2 -1
- data/test/multiverse/suites/sinatra/sinatra_test.rb +55 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +14 -0
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +25 -0
- data/test/new_relic/version_number_test.rb +32 -0
- data/test/test_helper.rb +6 -0
- metadata +9 -3
data/CHANGELOG
CHANGED
@@ -1,6 +1,29 @@
|
|
1
1
|
|
2
2
|
# New Relic Ruby Agent Release Notes #
|
3
3
|
|
4
|
+
## v3.5.4 ##
|
5
|
+
|
6
|
+
* Add queue time support for sinatra apps
|
7
|
+
|
8
|
+
Sinatra applications can now take advantage of front end queue time
|
9
|
+
reporting. Thanks to Winfield Peterson for this contribution.
|
10
|
+
|
11
|
+
* Simplify queue time configuration for nginx 1.3.9+
|
12
|
+
|
13
|
+
Beginning in version 1.3.9, recently released as a development version, the
|
14
|
+
$msec variable can be used to set an http header. This change allows front
|
15
|
+
end queue time to be tracked in New Relic simply by adding this line to the
|
16
|
+
nginx config:
|
17
|
+
|
18
|
+
proxy_set_header X-Queue-Start "t=${msec}000"
|
19
|
+
|
20
|
+
It will no longer be necessary to compile a patched version of nginx or
|
21
|
+
compile in the perl or lua module to enable this functionality.
|
22
|
+
|
23
|
+
Thanks to Lawrence Pit for the contribution.
|
24
|
+
|
25
|
+
* Report back build number and stage along with version info
|
26
|
+
|
4
27
|
## v3.5.3 ##
|
5
28
|
|
6
29
|
* Update the collector protocol to use JSON and Ruby primitives
|
@@ -10,7 +10,7 @@ module NewRelic
|
|
10
10
|
HEROKU_QUEUE_HEADER = 'HTTP_X_HEROKU_QUEUE_WAIT_TIME'
|
11
11
|
APP_HEADER = 'HTTP_X_APPLICATION_START'
|
12
12
|
|
13
|
-
HEADER_REGEX = /([^\s\/,(t=)]+)? ?t=([0-9]+)/
|
13
|
+
HEADER_REGEX = /([^\s\/,(t=)]+)? ?t=([0-9\.]+)/
|
14
14
|
SERVER_METRIC = 'WebFrontend/WebServer/'
|
15
15
|
MIDDLEWARE_METRIC = 'Middleware/'
|
16
16
|
# no individual queue metric - more than one queue?!
|
@@ -93,7 +93,7 @@ module NewRelic
|
|
93
93
|
def get_matches_from_header(header, env)
|
94
94
|
return [] if env.nil?
|
95
95
|
get_matches(env[header]).map do |name, time|
|
96
|
-
convert_to_name_time_pair(name, time)
|
96
|
+
convert_to_name_time_pair(name, time.sub('.', ''))
|
97
97
|
end
|
98
98
|
end
|
99
99
|
|
data/lib/new_relic/version.rb
CHANGED
@@ -1,10 +1,26 @@
|
|
1
1
|
#!/usr/bin/ruby
|
2
|
+
|
2
3
|
module NewRelic
|
3
4
|
module VERSION #:nodoc:
|
5
|
+
def self.parse_build_from_gemspec(path)
|
6
|
+
if File.exist?(path)
|
7
|
+
version_string = if Kernel.const_defined?(:Gem)
|
8
|
+
spec = Gem::Specification.load(path)
|
9
|
+
spec.version.to_s if spec
|
10
|
+
else
|
11
|
+
md = File.read(path).match(/s\.version\s*=\s*"(.*)"/)
|
12
|
+
md[1] if md
|
13
|
+
end
|
14
|
+
version_string && version_string.split('.', 4)[3]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
GEMSPEC_PATH = File.join(File.dirname(__FILE__), '..', '..', 'newrelic_rpm.gemspec')
|
4
19
|
MAJOR = 3
|
5
20
|
MINOR = 5
|
6
|
-
TINY =
|
7
|
-
BUILD =
|
21
|
+
TINY = 4
|
22
|
+
BUILD = parse_build_from_gemspec(GEMSPEC_PATH)
|
23
|
+
|
8
24
|
STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
|
9
25
|
end
|
10
26
|
|
data/newrelic_rpm.gemspec.erb
CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.name = "newrelic_rpm"
|
5
5
|
s.version = "<%= version_string %>"
|
6
6
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
7
|
-
s.authors = [ "Jason Clark", "Sam Goldstein", "Jon Guymon" ]
|
7
|
+
s.authors = [ "Jason Clark", "Sam Goldstein", "Jon Guymon", "Ben Weintraub" ]
|
8
8
|
s.date = "<%= date %>"
|
9
9
|
s.description = <<-EOS
|
10
10
|
New Relic is a performance management system, developed by New Relic,
|
@@ -0,0 +1,444 @@
|
|
1
|
+
#-*- coding: utf-8 -*-
|
2
|
+
# GITSHA: fc3004f85277f2e682e481d9af8d0834fd858762
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "newrelic_rpm"
|
6
|
+
s.version = "3.5.3"
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = [ "Jason Clark", "Sam Goldstein", "Jon Guymon" ]
|
9
|
+
s.date = "2012-12-10"
|
10
|
+
s.description = <<-EOS
|
11
|
+
New Relic is a performance management system, developed by New Relic,
|
12
|
+
Inc (http://www.newrelic.com). New Relic provides you with deep
|
13
|
+
information about the performance of your web application as it runs
|
14
|
+
in production. The New Relic Ruby Agent is dual-purposed as a either a
|
15
|
+
Gem or plugin, hosted on
|
16
|
+
http://github.com/newrelic/rpm/
|
17
|
+
EOS
|
18
|
+
s.email = "support@newrelic.com"
|
19
|
+
s.executables = [ "mongrel_rpm", "newrelic_cmd", "newrelic" ]
|
20
|
+
s.extra_rdoc_files = [
|
21
|
+
"CHANGELOG",
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"GUIDELINES_FOR_CONTRIBUTING.md",
|
25
|
+
"newrelic.yml"
|
26
|
+
]
|
27
|
+
s.files = [
|
28
|
+
".gitignore",
|
29
|
+
".project",
|
30
|
+
".travis.yml",
|
31
|
+
"CHANGELOG",
|
32
|
+
"GUIDELINES_FOR_CONTRIBUTING.md",
|
33
|
+
"Gemfile",
|
34
|
+
"InstallationNotes.md",
|
35
|
+
"LICENSE",
|
36
|
+
"README.md",
|
37
|
+
"Rakefile",
|
38
|
+
"bin/mongrel_rpm",
|
39
|
+
"bin/newrelic",
|
40
|
+
"bin/newrelic_cmd",
|
41
|
+
"cert/cacert.pem",
|
42
|
+
"cert/oldsite.pem",
|
43
|
+
"cert/site.pem",
|
44
|
+
"config.dot",
|
45
|
+
"config/database.yml",
|
46
|
+
"init.rb",
|
47
|
+
"install.rb",
|
48
|
+
"lib/conditional_vendored_dependency_detection.rb",
|
49
|
+
"lib/conditional_vendored_metric_parser.rb",
|
50
|
+
"lib/new_relic/agent.rb",
|
51
|
+
"lib/new_relic/agent/agent.rb",
|
52
|
+
"lib/new_relic/agent/beacon_configuration.rb",
|
53
|
+
"lib/new_relic/agent/browser_monitoring.rb",
|
54
|
+
"lib/new_relic/agent/busy_calculator.rb",
|
55
|
+
"lib/new_relic/agent/chained_call.rb",
|
56
|
+
"lib/new_relic/agent/configuration.rb",
|
57
|
+
"lib/new_relic/agent/configuration/defaults.rb",
|
58
|
+
"lib/new_relic/agent/configuration/environment_source.rb",
|
59
|
+
"lib/new_relic/agent/configuration/manager.rb",
|
60
|
+
"lib/new_relic/agent/configuration/mask_defaults.rb",
|
61
|
+
"lib/new_relic/agent/configuration/server_source.rb",
|
62
|
+
"lib/new_relic/agent/configuration/yaml_source.rb",
|
63
|
+
"lib/new_relic/agent/database.rb",
|
64
|
+
"lib/new_relic/agent/error_collector.rb",
|
65
|
+
"lib/new_relic/agent/instrumentation.rb",
|
66
|
+
"lib/new_relic/agent/instrumentation/active_merchant.rb",
|
67
|
+
"lib/new_relic/agent/instrumentation/active_record.rb",
|
68
|
+
"lib/new_relic/agent/instrumentation/acts_as_solr.rb",
|
69
|
+
"lib/new_relic/agent/instrumentation/authlogic.rb",
|
70
|
+
"lib/new_relic/agent/instrumentation/controller_instrumentation.rb",
|
71
|
+
"lib/new_relic/agent/instrumentation/data_mapper.rb",
|
72
|
+
"lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb",
|
73
|
+
"lib/new_relic/agent/instrumentation/memcache.rb",
|
74
|
+
"lib/new_relic/agent/instrumentation/merb/controller.rb",
|
75
|
+
"lib/new_relic/agent/instrumentation/merb/errors.rb",
|
76
|
+
"lib/new_relic/agent/instrumentation/metric_frame.rb",
|
77
|
+
"lib/new_relic/agent/instrumentation/metric_frame/pop.rb",
|
78
|
+
"lib/new_relic/agent/instrumentation/net.rb",
|
79
|
+
"lib/new_relic/agent/instrumentation/passenger_instrumentation.rb",
|
80
|
+
"lib/new_relic/agent/instrumentation/queue_time.rb",
|
81
|
+
"lib/new_relic/agent/instrumentation/rack.rb",
|
82
|
+
"lib/new_relic/agent/instrumentation/rails/action_controller.rb",
|
83
|
+
"lib/new_relic/agent/instrumentation/rails/action_web_service.rb",
|
84
|
+
"lib/new_relic/agent/instrumentation/rails/errors.rb",
|
85
|
+
"lib/new_relic/agent/instrumentation/rails3/action_controller.rb",
|
86
|
+
"lib/new_relic/agent/instrumentation/rails3/errors.rb",
|
87
|
+
"lib/new_relic/agent/instrumentation/resque.rb",
|
88
|
+
"lib/new_relic/agent/instrumentation/sinatra.rb",
|
89
|
+
"lib/new_relic/agent/instrumentation/sunspot.rb",
|
90
|
+
"lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb",
|
91
|
+
"lib/new_relic/agent/method_tracer.rb",
|
92
|
+
"lib/new_relic/agent/new_relic_service.rb",
|
93
|
+
"lib/new_relic/agent/pipe_channel_manager.rb",
|
94
|
+
"lib/new_relic/agent/pipe_service.rb",
|
95
|
+
"lib/new_relic/agent/sampler.rb",
|
96
|
+
"lib/new_relic/agent/samplers/cpu_sampler.rb",
|
97
|
+
"lib/new_relic/agent/samplers/delayed_job_sampler.rb",
|
98
|
+
"lib/new_relic/agent/samplers/memory_sampler.rb",
|
99
|
+
"lib/new_relic/agent/samplers/object_sampler.rb",
|
100
|
+
"lib/new_relic/agent/shim_agent.rb",
|
101
|
+
"lib/new_relic/agent/sql_sampler.rb",
|
102
|
+
"lib/new_relic/agent/stats_engine.rb",
|
103
|
+
"lib/new_relic/agent/stats_engine/gc_profiler.rb",
|
104
|
+
"lib/new_relic/agent/stats_engine/metric_stats.rb",
|
105
|
+
"lib/new_relic/agent/stats_engine/samplers.rb",
|
106
|
+
"lib/new_relic/agent/stats_engine/transactions.rb",
|
107
|
+
"lib/new_relic/agent/thread.rb",
|
108
|
+
"lib/new_relic/agent/thread_profiler.rb",
|
109
|
+
"lib/new_relic/agent/transaction_info.rb",
|
110
|
+
"lib/new_relic/agent/transaction_sample_builder.rb",
|
111
|
+
"lib/new_relic/agent/transaction_sampler.rb",
|
112
|
+
"lib/new_relic/agent/worker_loop.rb",
|
113
|
+
"lib/new_relic/collection_helper.rb",
|
114
|
+
"lib/new_relic/command.rb",
|
115
|
+
"lib/new_relic/commands/deployments.rb",
|
116
|
+
"lib/new_relic/commands/install.rb",
|
117
|
+
"lib/new_relic/control.rb",
|
118
|
+
"lib/new_relic/control/class_methods.rb",
|
119
|
+
"lib/new_relic/control/frameworks.rb",
|
120
|
+
"lib/new_relic/control/frameworks/external.rb",
|
121
|
+
"lib/new_relic/control/frameworks/merb.rb",
|
122
|
+
"lib/new_relic/control/frameworks/rails.rb",
|
123
|
+
"lib/new_relic/control/frameworks/rails3.rb",
|
124
|
+
"lib/new_relic/control/frameworks/ruby.rb",
|
125
|
+
"lib/new_relic/control/frameworks/sinatra.rb",
|
126
|
+
"lib/new_relic/control/instance_methods.rb",
|
127
|
+
"lib/new_relic/control/instrumentation.rb",
|
128
|
+
"lib/new_relic/control/logging_methods.rb",
|
129
|
+
"lib/new_relic/control/profiling.rb",
|
130
|
+
"lib/new_relic/control/server_methods.rb",
|
131
|
+
"lib/new_relic/delayed_job_injection.rb",
|
132
|
+
"lib/new_relic/helper.rb",
|
133
|
+
"lib/new_relic/language_support.rb",
|
134
|
+
"lib/new_relic/local_environment.rb",
|
135
|
+
"lib/new_relic/merbtasks.rb",
|
136
|
+
"lib/new_relic/metric_data.rb",
|
137
|
+
"lib/new_relic/metric_spec.rb",
|
138
|
+
"lib/new_relic/metrics.rb",
|
139
|
+
"lib/new_relic/noticed_error.rb",
|
140
|
+
"lib/new_relic/rack.rb",
|
141
|
+
"lib/new_relic/rack/browser_monitoring.rb",
|
142
|
+
"lib/new_relic/rack/developer_mode.rb",
|
143
|
+
"lib/new_relic/rack/error_collector.rb",
|
144
|
+
"lib/new_relic/recipes.rb",
|
145
|
+
"lib/new_relic/stats.rb",
|
146
|
+
"lib/new_relic/timer_lib.rb",
|
147
|
+
"lib/new_relic/transaction_analysis.rb",
|
148
|
+
"lib/new_relic/transaction_analysis/segment_summary.rb",
|
149
|
+
"lib/new_relic/transaction_sample.rb",
|
150
|
+
"lib/new_relic/transaction_sample/composite_segment.rb",
|
151
|
+
"lib/new_relic/transaction_sample/fake_segment.rb",
|
152
|
+
"lib/new_relic/transaction_sample/segment.rb",
|
153
|
+
"lib/new_relic/transaction_sample/summary_segment.rb",
|
154
|
+
"lib/new_relic/url_rule.rb",
|
155
|
+
"lib/new_relic/version.rb",
|
156
|
+
"lib/newrelic_rpm.rb",
|
157
|
+
"lib/tasks/all.rb",
|
158
|
+
"lib/tasks/install.rake",
|
159
|
+
"lib/tasks/tests.rake",
|
160
|
+
"newrelic.yml",
|
161
|
+
"newrelic_rpm.gemspec.erb",
|
162
|
+
"recipes/newrelic.rb",
|
163
|
+
"test/active_record_fixtures.rb",
|
164
|
+
"test/config/newrelic.yml",
|
165
|
+
"test/config/test_control.rb",
|
166
|
+
"test/fixtures/proc_cpuinfo.txt",
|
167
|
+
"test/intentional_fail.rb",
|
168
|
+
"test/multiverse/.gitignore",
|
169
|
+
"test/multiverse/README.md",
|
170
|
+
"test/multiverse/Rakefile",
|
171
|
+
"test/multiverse/lib/multiverse/color.rb",
|
172
|
+
"test/multiverse/lib/multiverse/envfile.rb",
|
173
|
+
"test/multiverse/lib/multiverse/environment.rb",
|
174
|
+
"test/multiverse/lib/multiverse/output_collector.rb",
|
175
|
+
"test/multiverse/lib/multiverse/runner.rb",
|
176
|
+
"test/multiverse/lib/multiverse/suite.rb",
|
177
|
+
"test/multiverse/script/run_one",
|
178
|
+
"test/multiverse/script/runner",
|
179
|
+
"test/multiverse/suites/active_record/Envfile",
|
180
|
+
"test/multiverse/suites/active_record/ar_method_aliasing.rb",
|
181
|
+
"test/multiverse/suites/active_record/config/newrelic.yml",
|
182
|
+
"test/multiverse/suites/active_record/encoding_test.rb",
|
183
|
+
"test/multiverse/suites/agent_only/Envfile",
|
184
|
+
"test/multiverse/suites/agent_only/config/newrelic.yml",
|
185
|
+
"test/multiverse/suites/agent_only/http_response_code_test.rb",
|
186
|
+
"test/multiverse/suites/agent_only/marshaling_test.rb",
|
187
|
+
"test/multiverse/suites/agent_only/method_visibility_test.rb",
|
188
|
+
"test/multiverse/suites/agent_only/pipe_manager_test.rb",
|
189
|
+
"test/multiverse/suites/agent_only/service_timeout_test.rb",
|
190
|
+
"test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb",
|
191
|
+
"test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb",
|
192
|
+
"test/multiverse/suites/agent_only/thread_profiling_test.rb",
|
193
|
+
"test/multiverse/suites/datamapper/Envfile",
|
194
|
+
"test/multiverse/suites/datamapper/config/newrelic.yml",
|
195
|
+
"test/multiverse/suites/datamapper/encoding_test.rb",
|
196
|
+
"test/multiverse/suites/monitor_mode_false/Envfile",
|
197
|
+
"test/multiverse/suites/monitor_mode_false/config/newrelic.yml",
|
198
|
+
"test/multiverse/suites/monitor_mode_false/no_dns_resolv.rb",
|
199
|
+
"test/multiverse/suites/no_load/Envfile",
|
200
|
+
"test/multiverse/suites/no_load/config/newrelic.yml",
|
201
|
+
"test/multiverse/suites/no_load/start_up_test.rb",
|
202
|
+
"test/multiverse/suites/rails_3_error_tracing/Envfile",
|
203
|
+
"test/multiverse/suites/rails_3_error_tracing/config/newrelic.yml",
|
204
|
+
"test/multiverse/suites/rails_3_error_tracing/error_tracing_test.rb",
|
205
|
+
"test/multiverse/suites/rails_3_gc/Envfile",
|
206
|
+
"test/multiverse/suites/rails_3_gc/config/newrelic.yml",
|
207
|
+
"test/multiverse/suites/rails_3_gc/instrumentation_test.rb",
|
208
|
+
"test/multiverse/suites/rails_3_queue_time/Envfile",
|
209
|
+
"test/multiverse/suites/rails_3_queue_time/config/newrelic.yml",
|
210
|
+
"test/multiverse/suites/rails_3_queue_time/queue_time_test.rb",
|
211
|
+
"test/multiverse/suites/rails_3_views/.gitignore",
|
212
|
+
"test/multiverse/suites/rails_3_views/Envfile",
|
213
|
+
"test/multiverse/suites/rails_3_views/app/views/foos/_foo.html.haml",
|
214
|
+
"test/multiverse/suites/rails_3_views/app/views/test/_a_partial.html.erb",
|
215
|
+
"test/multiverse/suites/rails_3_views/app/views/test/_mid_partial.html.erb",
|
216
|
+
"test/multiverse/suites/rails_3_views/app/views/test/_top_partial.html.erb",
|
217
|
+
"test/multiverse/suites/rails_3_views/app/views/test/deep_partial.html.erb",
|
218
|
+
"test/multiverse/suites/rails_3_views/app/views/test/haml_view.html.haml",
|
219
|
+
"test/multiverse/suites/rails_3_views/app/views/test/index.html.erb",
|
220
|
+
"test/multiverse/suites/rails_3_views/config/newrelic.yml",
|
221
|
+
"test/multiverse/suites/rails_3_views/view_instrumentation_test.rb",
|
222
|
+
"test/multiverse/suites/resque/Envfile",
|
223
|
+
"test/multiverse/suites/resque/config/newrelic.yml",
|
224
|
+
"test/multiverse/suites/resque/dump.rdb",
|
225
|
+
"test/multiverse/suites/resque/instrumentation_test.rb",
|
226
|
+
"test/multiverse/suites/rum_auto_instrumentation/Envfile",
|
227
|
+
"test/multiverse/suites/rum_auto_instrumentation/config/newrelic.yml",
|
228
|
+
"test/multiverse/suites/rum_auto_instrumentation/responses/worst_case_small.html",
|
229
|
+
"test/multiverse/suites/rum_auto_instrumentation/sanity_test.rb",
|
230
|
+
"test/multiverse/suites/sinatra/Envfile",
|
231
|
+
"test/multiverse/suites/sinatra/config/newrelic.yml",
|
232
|
+
"test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb",
|
233
|
+
"test/multiverse/suites/sinatra/sinatra_routes_test.rb",
|
234
|
+
"test/multiverse/suites/sinatra/sinatra_test.rb",
|
235
|
+
"test/multiverse/test/multiverse_test.rb",
|
236
|
+
"test/multiverse/test/suite_examples/one/a/Envfile",
|
237
|
+
"test/multiverse/test/suite_examples/one/a/a_test.rb",
|
238
|
+
"test/multiverse/test/suite_examples/one/a/config/newrelic.yml",
|
239
|
+
"test/multiverse/test/suite_examples/one/b/Envfile",
|
240
|
+
"test/multiverse/test/suite_examples/one/b/b_test.rb",
|
241
|
+
"test/multiverse/test/suite_examples/one/b/config/newrelic.yml",
|
242
|
+
"test/multiverse/test/suite_examples/three/a/Envfile",
|
243
|
+
"test/multiverse/test/suite_examples/three/a/fail_test.rb",
|
244
|
+
"test/multiverse/test/suite_examples/three/b/Envfile",
|
245
|
+
"test/multiverse/test/suite_examples/three/b/win_test.rb",
|
246
|
+
"test/multiverse/test/suite_examples/two/a/Envfile",
|
247
|
+
"test/multiverse/test/suite_examples/two/a/fail_test.rb",
|
248
|
+
"test/new_relic/agent/agent/connect_test.rb",
|
249
|
+
"test/new_relic/agent/agent/start_test.rb",
|
250
|
+
"test/new_relic/agent/agent/start_worker_thread_test.rb",
|
251
|
+
"test/new_relic/agent/agent_test.rb",
|
252
|
+
"test/new_relic/agent/agent_test_controller.rb",
|
253
|
+
"test/new_relic/agent/agent_test_controller_test.rb",
|
254
|
+
"test/new_relic/agent/apdex_from_server_test.rb",
|
255
|
+
"test/new_relic/agent/beacon_configuration_test.rb",
|
256
|
+
"test/new_relic/agent/browser_monitoring_test.rb",
|
257
|
+
"test/new_relic/agent/busy_calculator_test.rb",
|
258
|
+
"test/new_relic/agent/configuration/environment_source_test.rb",
|
259
|
+
"test/new_relic/agent/configuration/manager_test.rb",
|
260
|
+
"test/new_relic/agent/configuration/server_source_test.rb",
|
261
|
+
"test/new_relic/agent/configuration/yaml_source_test.rb",
|
262
|
+
"test/new_relic/agent/database_test.rb",
|
263
|
+
"test/new_relic/agent/error_collector/notice_error_test.rb",
|
264
|
+
"test/new_relic/agent/error_collector_test.rb",
|
265
|
+
"test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb",
|
266
|
+
"test/new_relic/agent/instrumentation/controller_instrumentation_test.rb",
|
267
|
+
"test/new_relic/agent/instrumentation/instrumentation_test.rb",
|
268
|
+
"test/new_relic/agent/instrumentation/metric_frame/pop_test.rb",
|
269
|
+
"test/new_relic/agent/instrumentation/metric_frame_test.rb",
|
270
|
+
"test/new_relic/agent/instrumentation/net_instrumentation_test.rb",
|
271
|
+
"test/new_relic/agent/instrumentation/queue_time_test.rb",
|
272
|
+
"test/new_relic/agent/instrumentation/rack_test.rb",
|
273
|
+
"test/new_relic/agent/instrumentation/sinatra_test.rb",
|
274
|
+
"test/new_relic/agent/instrumentation/task_instrumentation_test.rb",
|
275
|
+
"test/new_relic/agent/memcache_instrumentation_test.rb",
|
276
|
+
"test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb",
|
277
|
+
"test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb",
|
278
|
+
"test/new_relic/agent/method_tracer_test.rb",
|
279
|
+
"test/new_relic/agent/mock_scope_listener.rb",
|
280
|
+
"test/new_relic/agent/new_relic_service_test.rb",
|
281
|
+
"test/new_relic/agent/pipe_channel_manager_test.rb",
|
282
|
+
"test/new_relic/agent/pipe_service_test.rb",
|
283
|
+
"test/new_relic/agent/rpm_agent_test.rb",
|
284
|
+
"test/new_relic/agent/sampler_test.rb",
|
285
|
+
"test/new_relic/agent/shim_agent_test.rb",
|
286
|
+
"test/new_relic/agent/sql_sampler_test.rb",
|
287
|
+
"test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb",
|
288
|
+
"test/new_relic/agent/stats_engine/metric_stats_test.rb",
|
289
|
+
"test/new_relic/agent/stats_engine/samplers_test.rb",
|
290
|
+
"test/new_relic/agent/stats_engine_test.rb",
|
291
|
+
"test/new_relic/agent/thread_profiler_test.rb",
|
292
|
+
"test/new_relic/agent/thread_test.rb",
|
293
|
+
"test/new_relic/agent/threaded_test.rb",
|
294
|
+
"test/new_relic/agent/transaction_info_test.rb",
|
295
|
+
"test/new_relic/agent/transaction_sample_builder_test.rb",
|
296
|
+
"test/new_relic/agent/transaction_sampler_test.rb",
|
297
|
+
"test/new_relic/agent/worker_loop_test.rb",
|
298
|
+
"test/new_relic/agent_test.rb",
|
299
|
+
"test/new_relic/collection_helper_test.rb",
|
300
|
+
"test/new_relic/command/deployments_test.rb",
|
301
|
+
"test/new_relic/control/class_methods_test.rb",
|
302
|
+
"test/new_relic/control/frameworks/rails_test.rb",
|
303
|
+
"test/new_relic/control/logging_methods_test.rb",
|
304
|
+
"test/new_relic/control_test.rb",
|
305
|
+
"test/new_relic/delayed_job_injection_test.rb",
|
306
|
+
"test/new_relic/fake_collector.rb",
|
307
|
+
"test/new_relic/fake_service.rb",
|
308
|
+
"test/new_relic/fakes_sending_data.rb",
|
309
|
+
"test/new_relic/load_test.rb",
|
310
|
+
"test/new_relic/local_environment_test.rb",
|
311
|
+
"test/new_relic/metric_data_test.rb",
|
312
|
+
"test/new_relic/metric_parser/metric_parser_test.rb",
|
313
|
+
"test/new_relic/metric_spec_test.rb",
|
314
|
+
"test/new_relic/noticed_error_test.rb",
|
315
|
+
"test/new_relic/rack/all_test.rb",
|
316
|
+
"test/new_relic/rack/browser_monitoring_test.rb",
|
317
|
+
"test/new_relic/rack/developer_mode_helper_test.rb",
|
318
|
+
"test/new_relic/rack/developer_mode_test.rb",
|
319
|
+
"test/new_relic/rack/error_collector_test.rb",
|
320
|
+
"test/new_relic/stats_test.rb",
|
321
|
+
"test/new_relic/transaction_analysis/segment_summary_test.rb",
|
322
|
+
"test/new_relic/transaction_analysis_test.rb",
|
323
|
+
"test/new_relic/transaction_sample/composite_segment_test.rb",
|
324
|
+
"test/new_relic/transaction_sample/fake_segment_test.rb",
|
325
|
+
"test/new_relic/transaction_sample/segment_test.rb",
|
326
|
+
"test/new_relic/transaction_sample/summary_segment_test.rb",
|
327
|
+
"test/new_relic/transaction_sample_subtest_test.rb",
|
328
|
+
"test/new_relic/transaction_sample_test.rb",
|
329
|
+
"test/new_relic/version_number_test.rb",
|
330
|
+
"test/script/build_test_gem.sh",
|
331
|
+
"test/script/ci.sh",
|
332
|
+
"test/script/ci_agent-tests_runner.sh",
|
333
|
+
"test/script/ci_bench.sh",
|
334
|
+
"test/script/ci_multiverse_runner.sh",
|
335
|
+
"test/test_contexts.rb",
|
336
|
+
"test/test_helper.rb",
|
337
|
+
"ui/helpers/developer_mode_helper.rb",
|
338
|
+
"ui/helpers/google_pie_chart.rb",
|
339
|
+
"ui/views/layouts/newrelic_default.rhtml",
|
340
|
+
"ui/views/newrelic/_explain_plans.rhtml",
|
341
|
+
"ui/views/newrelic/_sample.rhtml",
|
342
|
+
"ui/views/newrelic/_segment.rhtml",
|
343
|
+
"ui/views/newrelic/_segment_limit_message.rhtml",
|
344
|
+
"ui/views/newrelic/_segment_row.rhtml",
|
345
|
+
"ui/views/newrelic/_show_sample_detail.rhtml",
|
346
|
+
"ui/views/newrelic/_show_sample_sql.rhtml",
|
347
|
+
"ui/views/newrelic/_show_sample_summary.rhtml",
|
348
|
+
"ui/views/newrelic/_sql_row.rhtml",
|
349
|
+
"ui/views/newrelic/_stack_trace.rhtml",
|
350
|
+
"ui/views/newrelic/_table.rhtml",
|
351
|
+
"ui/views/newrelic/explain_sql.rhtml",
|
352
|
+
"ui/views/newrelic/file/images/arrow-close.png",
|
353
|
+
"ui/views/newrelic/file/images/arrow-open.png",
|
354
|
+
"ui/views/newrelic/file/images/blue_bar.gif",
|
355
|
+
"ui/views/newrelic/file/images/file_icon.png",
|
356
|
+
"ui/views/newrelic/file/images/gray_bar.gif",
|
357
|
+
"ui/views/newrelic/file/images/new-relic-rpm-desktop.gif",
|
358
|
+
"ui/views/newrelic/file/images/new_relic_rpm_desktop.gif",
|
359
|
+
"ui/views/newrelic/file/images/textmate.png",
|
360
|
+
"ui/views/newrelic/file/javascript/jquery-1.4.2.js",
|
361
|
+
"ui/views/newrelic/file/javascript/transaction_sample.js",
|
362
|
+
"ui/views/newrelic/file/stylesheets/style.css",
|
363
|
+
"ui/views/newrelic/index.rhtml",
|
364
|
+
"ui/views/newrelic/sample_not_found.rhtml",
|
365
|
+
"ui/views/newrelic/show_sample.rhtml",
|
366
|
+
"ui/views/newrelic/show_source.rhtml",
|
367
|
+
"ui/views/newrelic/threads.rhtml",
|
368
|
+
"vendor/gems/dependency_detection-0.0.1.build/LICENSE",
|
369
|
+
"vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb",
|
370
|
+
"vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb",
|
371
|
+
"vendor/gems/metric_parser-0.1.0.pre1/.specification",
|
372
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb",
|
373
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb",
|
374
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb",
|
375
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb",
|
376
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb",
|
377
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb",
|
378
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb",
|
379
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb",
|
380
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb",
|
381
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb",
|
382
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb",
|
383
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb",
|
384
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb",
|
385
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb",
|
386
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb",
|
387
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb",
|
388
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb",
|
389
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb",
|
390
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb",
|
391
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb",
|
392
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb",
|
393
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb",
|
394
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb",
|
395
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb",
|
396
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb",
|
397
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb",
|
398
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb",
|
399
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb",
|
400
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb",
|
401
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb",
|
402
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb",
|
403
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb",
|
404
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb",
|
405
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb",
|
406
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb",
|
407
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb",
|
408
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb",
|
409
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb",
|
410
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb",
|
411
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb",
|
412
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb",
|
413
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb",
|
414
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb",
|
415
|
+
"vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb",
|
416
|
+
"newrelic_rpm.gemspec",
|
417
|
+
]
|
418
|
+
s.homepage = "http://www.github.com/newrelic/rpm"
|
419
|
+
s.post_install_message = <<-EOS
|
420
|
+
PLEASE NOTE:
|
421
|
+
|
422
|
+
Developer Mode is now a Rack middleware.
|
423
|
+
|
424
|
+
Developer Mode is no longer available in Rails 2.1 and earlier.
|
425
|
+
However, starting in version 2.12 you can use Developer Mode in any
|
426
|
+
Rack based framework, in addition to Rails. To install developer mode
|
427
|
+
in a non-Rails application, just add NewRelic::Rack::DeveloperMode to
|
428
|
+
your middleware stack.
|
429
|
+
|
430
|
+
If you are using JRuby, we recommend using at least version 1.4 or
|
431
|
+
later because of issues with the implementation of the timeout library.
|
432
|
+
|
433
|
+
Refer to the README.md file for more information.
|
434
|
+
|
435
|
+
Please see http://github.com/newrelic/rpm/blob/master/CHANGELOG
|
436
|
+
for a complete description of the features and enhancements available
|
437
|
+
in this version of the Ruby Agent.
|
438
|
+
|
439
|
+
EOS
|
440
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "New Relic Ruby Agent"]
|
441
|
+
s.require_paths = ["lib"]
|
442
|
+
s.rubygems_version = "1.8.23"
|
443
|
+
s.summary = "New Relic Ruby Agent"
|
444
|
+
end
|