factorylabs-newrelic_rpm 2.10.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +354 -0
- data/LICENSE +37 -0
- data/README-2.10.2.2 +10 -0
- data/README.md +138 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic_cmd +4 -0
- data/cert/cacert.pem +34 -0
- data/install.rb +45 -0
- data/lib/new_relic/agent.rb +315 -0
- data/lib/new_relic/agent/agent.rb +647 -0
- data/lib/new_relic/agent/busy_calculator.rb +86 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/collection_helper.rb +66 -0
- data/lib/new_relic/agent/error_collector.rb +117 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +18 -0
- data/lib/new_relic/agent/instrumentation/active_record_instrumentation.rb +91 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +8 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +389 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +90 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +12 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +24 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +26 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +8 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +199 -0
- data/lib/new_relic/agent/instrumentation/net.rb +21 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +109 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +59 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +27 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +24 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +39 -0
- data/lib/new_relic/agent/method_tracer.rb +348 -0
- data/lib/new_relic/agent/patch_const_missing.rb +125 -0
- data/lib/new_relic/agent/sampler.rb +46 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +141 -0
- data/lib/new_relic/agent/samplers/mongrel_sampler.rb +23 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +24 -0
- data/lib/new_relic/agent/shim_agent.rb +21 -0
- data/lib/new_relic/agent/stats_engine.rb +22 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +116 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +74 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +154 -0
- data/lib/new_relic/agent/transaction_sampler.rb +315 -0
- data/lib/new_relic/agent/worker_loop.rb +118 -0
- data/lib/new_relic/commands/deployments.rb +145 -0
- data/lib/new_relic/commands/new_relic_commands.rb +30 -0
- data/lib/new_relic/control.rb +484 -0
- data/lib/new_relic/control/external.rb +13 -0
- data/lib/new_relic/control/merb.rb +24 -0
- data/lib/new_relic/control/rails.rb +151 -0
- data/lib/new_relic/control/ruby.rb +36 -0
- data/lib/new_relic/control/sinatra.rb +14 -0
- data/lib/new_relic/histogram.rb +89 -0
- data/lib/new_relic/local_environment.rb +299 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +42 -0
- data/lib/new_relic/metric_parser.rb +124 -0
- data/lib/new_relic/metric_parser/action_mailer.rb +9 -0
- data/lib/new_relic/metric_parser/active_merchant.rb +26 -0
- data/lib/new_relic/metric_parser/active_record.rb +25 -0
- data/lib/new_relic/metric_parser/controller.rb +54 -0
- data/lib/new_relic/metric_parser/controller_cpu.rb +38 -0
- data/lib/new_relic/metric_parser/errors.rb +6 -0
- data/lib/new_relic/metric_parser/external.rb +50 -0
- data/lib/new_relic/metric_parser/mem_cache.rb +12 -0
- data/lib/new_relic/metric_parser/other_transaction.rb +15 -0
- data/lib/new_relic/metric_parser/view.rb +61 -0
- data/lib/new_relic/metric_parser/web_frontend.rb +14 -0
- data/lib/new_relic/metric_parser/web_service.rb +9 -0
- data/lib/new_relic/metric_spec.rb +67 -0
- data/lib/new_relic/metrics.rb +7 -0
- data/lib/new_relic/noticed_error.rb +23 -0
- data/lib/new_relic/rack/metric_app.rb +56 -0
- data/lib/new_relic/rack/mongrel_rpm.ru +25 -0
- data/lib/new_relic/rack/newrelic.yml +26 -0
- data/lib/new_relic/rack_app.rb +5 -0
- data/lib/new_relic/recipes.rb +82 -0
- data/lib/new_relic/stats.rb +362 -0
- data/lib/new_relic/transaction_analysis.rb +121 -0
- data/lib/new_relic/transaction_sample.rb +671 -0
- data/lib/new_relic/version.rb +54 -0
- data/lib/new_relic_api.rb +276 -0
- data/lib/newrelic_rpm.rb +45 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +15 -0
- data/newrelic.yml +227 -0
- data/newrelic_rpm.gemspec +214 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +55 -0
- data/test/config/newrelic.yml +46 -0
- data/test/config/test_control.rb +38 -0
- data/test/new_relic/agent/active_record_instrumentation_test.rb +268 -0
- data/test/new_relic/agent/agent_controller_test.rb +254 -0
- data/test/new_relic/agent/agent_test_controller.rb +78 -0
- data/test/new_relic/agent/busy_calculator_test.rb +79 -0
- data/test/new_relic/agent/classloader_patch_test.rb +56 -0
- data/test/new_relic/agent/collection_helper_test.rb +125 -0
- data/test/new_relic/agent/error_collector_test.rb +173 -0
- data/test/new_relic/agent/method_tracer_test.rb +340 -0
- data/test/new_relic/agent/metric_data_test.rb +56 -0
- data/test/new_relic/agent/mock_ar_connection.rb +40 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/net_instrumentation_test.rb +63 -0
- data/test/new_relic/agent/rpm_agent_test.rb +125 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +79 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +88 -0
- data/test/new_relic/agent/stats_engine/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/task_instrumentation_test.rb +177 -0
- data/test/new_relic/agent/testable_agent.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +195 -0
- data/test/new_relic/agent/transaction_sample_test.rb +186 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +404 -0
- data/test/new_relic/agent/worker_loop_test.rb +103 -0
- data/test/new_relic/control_test.rb +110 -0
- data/test/new_relic/delayed_job_test.rb +108 -0
- data/test/new_relic/deployments_api_test.rb +68 -0
- data/test/new_relic/environment_test.rb +75 -0
- data/test/new_relic/metric_parser_test.rb +172 -0
- data/test/new_relic/metric_spec_test.rb +177 -0
- data/test/new_relic/shim_agent_test.rb +9 -0
- data/test/new_relic/stats_test.rb +291 -0
- data/test/new_relic/version_number_test.rb +76 -0
- data/test/test_helper.rb +53 -0
- data/test/ui/newrelic_controller_test.rb +14 -0
- data/test/ui/newrelic_helper_test.rb +53 -0
- data/ui/controllers/newrelic_controller.rb +220 -0
- data/ui/helpers/google_pie_chart.rb +49 -0
- data/ui/helpers/newrelic_helper.rb +320 -0
- data/ui/views/layouts/newrelic_default.rhtml +47 -0
- data/ui/views/newrelic/_explain_plans.rhtml +27 -0
- data/ui/views/newrelic/_sample.rhtml +19 -0
- data/ui/views/newrelic/_segment.rhtml +28 -0
- data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
- data/ui/views/newrelic/_segment_row.rhtml +14 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +20 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +11 -0
- data/ui/views/newrelic/_stack_trace.rhtml +30 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +42 -0
- data/ui/views/newrelic/images/arrow-close.png +0 -0
- data/ui/views/newrelic/images/arrow-open.png +0 -0
- data/ui/views/newrelic/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/images/file_icon.png +0 -0
- data/ui/views/newrelic/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/images/textmate.png +0 -0
- data/ui/views/newrelic/index.rhtml +57 -0
- data/ui/views/newrelic/javascript/prototype-scriptaculous.js +7288 -0
- data/ui/views/newrelic/javascript/transaction_sample.js +107 -0
- data/ui/views/newrelic/sample_not_found.rhtml +2 -0
- data/ui/views/newrelic/show_sample.rhtml +80 -0
- data/ui/views/newrelic/show_source.rhtml +3 -0
- data/ui/views/newrelic/stylesheets/style.css +484 -0
- data/ui/views/newrelic/threads.rhtml +52 -0
- metadata +238 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
<h2>Thread List</h2>
|
2
|
+
<p><%= link_to 'Back', :action => 'index' %></p>
|
3
|
+
<table>
|
4
|
+
<thead><th class="title" colspan="5">Application Threads</th></thead>
|
5
|
+
<thead>
|
6
|
+
<th class="left">Name</th>
|
7
|
+
<th class="left">Status</th>
|
8
|
+
<th class="left">Group</th>
|
9
|
+
<th class="left">Priority</th>
|
10
|
+
<th class="left">Locals</th>
|
11
|
+
</thead>
|
12
|
+
<%
|
13
|
+
main = Thread.main
|
14
|
+
threads = Thread.list - [ main ]
|
15
|
+
nr_threads = []
|
16
|
+
threads.delete_if { | thread | nr_threads << thread if thread.key? 'newrelic_label' }
|
17
|
+
([ main ] + threads).each_with_index do | thread, i | -%>
|
18
|
+
<tr class="odd_row">
|
19
|
+
<td valign="top"><%= h(thread == main ? 'main' : thread.to_s) %></td>
|
20
|
+
<td valign="top"><%= h(thread.status || 'terminated with exception') %></td>
|
21
|
+
<td valign="top"><%= h(thread.group || 'none') %></td>
|
22
|
+
<td valign="top"><%= h thread.priority %></td>
|
23
|
+
<td class="locals">
|
24
|
+
<%= thread.keys.map{|k| h k}.join("</br>") %>
|
25
|
+
</td>
|
26
|
+
</tr>
|
27
|
+
<% end -%>
|
28
|
+
<% if nr_threads.size > 0 -%>
|
29
|
+
<tr><td> </td></tr>
|
30
|
+
<thead><th class="title" colspan="5">New Relic Agent Threads</th></thead>
|
31
|
+
<thead>
|
32
|
+
<th class="left">Name</th>
|
33
|
+
<th class="left">Status</th>
|
34
|
+
<th class="left">Group</th>
|
35
|
+
<th class="left">Priority</th>
|
36
|
+
<th class="left">Locals</th>
|
37
|
+
</thead>
|
38
|
+
|
39
|
+
<% nr_threads.each_with_index do | thread, i | -%>
|
40
|
+
<tr class="odd_row">
|
41
|
+
<td valign="top"><%= h thread['newrelic_label'] %></td>
|
42
|
+
<td valign="top"><%= h(thread.status || 'terminated with exception') %></td>
|
43
|
+
<td valign="top"><%= h(thread.group || 'none') %></td>
|
44
|
+
<td valign="top"><%= h thread.priority %></td>
|
45
|
+
<td class="locals">
|
46
|
+
<%= (thread.keys - ['newrelic_label']).map{|k| h k}.join("</br>") %>
|
47
|
+
</td>
|
48
|
+
</tr>
|
49
|
+
<% end -%>
|
50
|
+
<% end -%>
|
51
|
+
|
52
|
+
</table>
|
metadata
ADDED
@@ -0,0 +1,238 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: factorylabs-newrelic_rpm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.10.2.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bill Kayser
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-02-04 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: |
|
17
|
+
New Relic RPM is a Ruby performance management system, developed by
|
18
|
+
New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
|
19
|
+
information about the performance of your Ruby on Rails or Merb
|
20
|
+
application as it runs in production. The New Relic Agent is
|
21
|
+
dual-purposed as a either a Rails plugin or a Gem, hosted on
|
22
|
+
http://github.com/newrelic/rpm/tree/master.
|
23
|
+
|
24
|
+
email: support@newrelic.com
|
25
|
+
executables:
|
26
|
+
- mongrel_rpm
|
27
|
+
- newrelic_cmd
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- LICENSE
|
32
|
+
- README-2.10.2.2
|
33
|
+
- README.md
|
34
|
+
files:
|
35
|
+
- CHANGELOG
|
36
|
+
- LICENSE
|
37
|
+
- README-2.10.2.2
|
38
|
+
- README.md
|
39
|
+
- bin/mongrel_rpm
|
40
|
+
- bin/newrelic_cmd
|
41
|
+
- cert/cacert.pem
|
42
|
+
- install.rb
|
43
|
+
- lib/new_relic/agent.rb
|
44
|
+
- lib/new_relic/agent/agent.rb
|
45
|
+
- lib/new_relic/agent/busy_calculator.rb
|
46
|
+
- lib/new_relic/agent/chained_call.rb
|
47
|
+
- lib/new_relic/agent/collection_helper.rb
|
48
|
+
- lib/new_relic/agent/error_collector.rb
|
49
|
+
- lib/new_relic/agent/instrumentation/active_merchant.rb
|
50
|
+
- lib/new_relic/agent/instrumentation/active_record_instrumentation.rb
|
51
|
+
- lib/new_relic/agent/instrumentation/authlogic.rb
|
52
|
+
- lib/new_relic/agent/instrumentation/controller_instrumentation.rb
|
53
|
+
- lib/new_relic/agent/instrumentation/data_mapper.rb
|
54
|
+
- lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb
|
55
|
+
- lib/new_relic/agent/instrumentation/memcache.rb
|
56
|
+
- lib/new_relic/agent/instrumentation/merb/controller.rb
|
57
|
+
- lib/new_relic/agent/instrumentation/merb/errors.rb
|
58
|
+
- lib/new_relic/agent/instrumentation/metric_frame.rb
|
59
|
+
- lib/new_relic/agent/instrumentation/net.rb
|
60
|
+
- lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
|
61
|
+
- lib/new_relic/agent/instrumentation/rack.rb
|
62
|
+
- lib/new_relic/agent/instrumentation/rails/action_controller.rb
|
63
|
+
- lib/new_relic/agent/instrumentation/rails/action_web_service.rb
|
64
|
+
- lib/new_relic/agent/instrumentation/rails/errors.rb
|
65
|
+
- lib/new_relic/agent/instrumentation/sinatra.rb
|
66
|
+
- lib/new_relic/agent/method_tracer.rb
|
67
|
+
- lib/new_relic/agent/patch_const_missing.rb
|
68
|
+
- lib/new_relic/agent/sampler.rb
|
69
|
+
- lib/new_relic/agent/samplers/cpu_sampler.rb
|
70
|
+
- lib/new_relic/agent/samplers/memory_sampler.rb
|
71
|
+
- lib/new_relic/agent/samplers/mongrel_sampler.rb
|
72
|
+
- lib/new_relic/agent/samplers/object_sampler.rb
|
73
|
+
- lib/new_relic/agent/shim_agent.rb
|
74
|
+
- lib/new_relic/agent/stats_engine.rb
|
75
|
+
- lib/new_relic/agent/stats_engine/metric_stats.rb
|
76
|
+
- lib/new_relic/agent/stats_engine/samplers.rb
|
77
|
+
- lib/new_relic/agent/stats_engine/transactions.rb
|
78
|
+
- lib/new_relic/agent/transaction_sampler.rb
|
79
|
+
- lib/new_relic/agent/worker_loop.rb
|
80
|
+
- lib/new_relic/commands/deployments.rb
|
81
|
+
- lib/new_relic/commands/new_relic_commands.rb
|
82
|
+
- lib/new_relic/control.rb
|
83
|
+
- lib/new_relic/control/external.rb
|
84
|
+
- lib/new_relic/control/merb.rb
|
85
|
+
- lib/new_relic/control/rails.rb
|
86
|
+
- lib/new_relic/control/ruby.rb
|
87
|
+
- lib/new_relic/control/sinatra.rb
|
88
|
+
- lib/new_relic/histogram.rb
|
89
|
+
- lib/new_relic/local_environment.rb
|
90
|
+
- lib/new_relic/merbtasks.rb
|
91
|
+
- lib/new_relic/metric_data.rb
|
92
|
+
- lib/new_relic/metric_parser.rb
|
93
|
+
- lib/new_relic/metric_parser/action_mailer.rb
|
94
|
+
- lib/new_relic/metric_parser/active_merchant.rb
|
95
|
+
- lib/new_relic/metric_parser/active_record.rb
|
96
|
+
- lib/new_relic/metric_parser/controller.rb
|
97
|
+
- lib/new_relic/metric_parser/controller_cpu.rb
|
98
|
+
- lib/new_relic/metric_parser/errors.rb
|
99
|
+
- lib/new_relic/metric_parser/external.rb
|
100
|
+
- lib/new_relic/metric_parser/mem_cache.rb
|
101
|
+
- lib/new_relic/metric_parser/other_transaction.rb
|
102
|
+
- lib/new_relic/metric_parser/view.rb
|
103
|
+
- lib/new_relic/metric_parser/web_frontend.rb
|
104
|
+
- lib/new_relic/metric_parser/web_service.rb
|
105
|
+
- lib/new_relic/metric_spec.rb
|
106
|
+
- lib/new_relic/metrics.rb
|
107
|
+
- lib/new_relic/noticed_error.rb
|
108
|
+
- lib/new_relic/rack/metric_app.rb
|
109
|
+
- lib/new_relic/rack/mongrel_rpm.ru
|
110
|
+
- lib/new_relic/rack/newrelic.yml
|
111
|
+
- lib/new_relic/rack_app.rb
|
112
|
+
- lib/new_relic/recipes.rb
|
113
|
+
- lib/new_relic/stats.rb
|
114
|
+
- lib/new_relic/transaction_analysis.rb
|
115
|
+
- lib/new_relic/transaction_sample.rb
|
116
|
+
- lib/new_relic/version.rb
|
117
|
+
- lib/new_relic_api.rb
|
118
|
+
- lib/newrelic_rpm.rb
|
119
|
+
- lib/tasks/all.rb
|
120
|
+
- lib/tasks/install.rake
|
121
|
+
- lib/tasks/tests.rake
|
122
|
+
- newrelic.yml
|
123
|
+
- newrelic_rpm.gemspec
|
124
|
+
- recipes/newrelic.rb
|
125
|
+
- test/active_record_fixtures.rb
|
126
|
+
- test/config/newrelic.yml
|
127
|
+
- test/config/test_control.rb
|
128
|
+
- test/new_relic/agent/active_record_instrumentation_test.rb
|
129
|
+
- test/new_relic/agent/agent_controller_test.rb
|
130
|
+
- test/new_relic/agent/agent_test_controller.rb
|
131
|
+
- test/new_relic/agent/busy_calculator_test.rb
|
132
|
+
- test/new_relic/agent/classloader_patch_test.rb
|
133
|
+
- test/new_relic/agent/collection_helper_test.rb
|
134
|
+
- test/new_relic/agent/error_collector_test.rb
|
135
|
+
- test/new_relic/agent/method_tracer_test.rb
|
136
|
+
- test/new_relic/agent/metric_data_test.rb
|
137
|
+
- test/new_relic/agent/mock_ar_connection.rb
|
138
|
+
- test/new_relic/agent/mock_scope_listener.rb
|
139
|
+
- test/new_relic/agent/net_instrumentation_test.rb
|
140
|
+
- test/new_relic/agent/rpm_agent_test.rb
|
141
|
+
- test/new_relic/agent/stats_engine/metric_stats_test.rb
|
142
|
+
- test/new_relic/agent/stats_engine/samplers_test.rb
|
143
|
+
- test/new_relic/agent/stats_engine/stats_engine_test.rb
|
144
|
+
- test/new_relic/agent/task_instrumentation_test.rb
|
145
|
+
- test/new_relic/agent/testable_agent.rb
|
146
|
+
- test/new_relic/agent/transaction_sample_builder_test.rb
|
147
|
+
- test/new_relic/agent/transaction_sample_test.rb
|
148
|
+
- test/new_relic/agent/transaction_sampler_test.rb
|
149
|
+
- test/new_relic/agent/worker_loop_test.rb
|
150
|
+
- test/new_relic/control_test.rb
|
151
|
+
- test/new_relic/delayed_job_test.rb
|
152
|
+
- test/new_relic/deployments_api_test.rb
|
153
|
+
- test/new_relic/environment_test.rb
|
154
|
+
- test/new_relic/metric_parser_test.rb
|
155
|
+
- test/new_relic/metric_spec_test.rb
|
156
|
+
- test/new_relic/shim_agent_test.rb
|
157
|
+
- test/new_relic/stats_test.rb
|
158
|
+
- test/new_relic/version_number_test.rb
|
159
|
+
- test/test_helper.rb
|
160
|
+
- test/ui/newrelic_controller_test.rb
|
161
|
+
- test/ui/newrelic_helper_test.rb
|
162
|
+
- ui/controllers/newrelic_controller.rb
|
163
|
+
- ui/helpers/google_pie_chart.rb
|
164
|
+
- ui/helpers/newrelic_helper.rb
|
165
|
+
- ui/views/layouts/newrelic_default.rhtml
|
166
|
+
- ui/views/newrelic/_explain_plans.rhtml
|
167
|
+
- ui/views/newrelic/_sample.rhtml
|
168
|
+
- ui/views/newrelic/_segment.rhtml
|
169
|
+
- ui/views/newrelic/_segment_limit_message.rhtml
|
170
|
+
- ui/views/newrelic/_segment_row.rhtml
|
171
|
+
- ui/views/newrelic/_show_sample_detail.rhtml
|
172
|
+
- ui/views/newrelic/_show_sample_sql.rhtml
|
173
|
+
- ui/views/newrelic/_show_sample_summary.rhtml
|
174
|
+
- ui/views/newrelic/_sql_row.rhtml
|
175
|
+
- ui/views/newrelic/_stack_trace.rhtml
|
176
|
+
- ui/views/newrelic/_table.rhtml
|
177
|
+
- ui/views/newrelic/explain_sql.rhtml
|
178
|
+
- ui/views/newrelic/images/arrow-close.png
|
179
|
+
- ui/views/newrelic/images/arrow-open.png
|
180
|
+
- ui/views/newrelic/images/blue_bar.gif
|
181
|
+
- ui/views/newrelic/images/file_icon.png
|
182
|
+
- ui/views/newrelic/images/gray_bar.gif
|
183
|
+
- ui/views/newrelic/images/new-relic-rpm-desktop.gif
|
184
|
+
- ui/views/newrelic/images/new_relic_rpm_desktop.gif
|
185
|
+
- ui/views/newrelic/images/textmate.png
|
186
|
+
- ui/views/newrelic/index.rhtml
|
187
|
+
- ui/views/newrelic/javascript/prototype-scriptaculous.js
|
188
|
+
- ui/views/newrelic/javascript/transaction_sample.js
|
189
|
+
- ui/views/newrelic/sample_not_found.rhtml
|
190
|
+
- ui/views/newrelic/show_sample.rhtml
|
191
|
+
- ui/views/newrelic/show_source.rhtml
|
192
|
+
- ui/views/newrelic/stylesheets/style.css
|
193
|
+
- ui/views/newrelic/threads.rhtml
|
194
|
+
has_rdoc: true
|
195
|
+
homepage: http://www.github.com/newrelic/rpm
|
196
|
+
licenses: []
|
197
|
+
|
198
|
+
post_install_message: |+
|
199
|
+
|
200
|
+
Important Note!
|
201
|
+
|
202
|
+
Starting in 2.10.2 we created an external 'rpm_contrib' gem and moved
|
203
|
+
some of the contributed instrumentation into it. If you were
|
204
|
+
using this gem to monitor DelayedJob then you will need to
|
205
|
+
install the rpm_contrib gem instead.
|
206
|
+
|
207
|
+
See http://github.com/newrelic/rpm_contrib
|
208
|
+
|
209
|
+
rdoc_options:
|
210
|
+
- --charset=UTF-8
|
211
|
+
- --line-numbers
|
212
|
+
- --inline-source
|
213
|
+
- --title
|
214
|
+
- New Relic RPM
|
215
|
+
- README.md
|
216
|
+
require_paths:
|
217
|
+
- lib
|
218
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: "0"
|
223
|
+
version:
|
224
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
225
|
+
requirements:
|
226
|
+
- - ">="
|
227
|
+
- !ruby/object:Gem::Version
|
228
|
+
version: "0"
|
229
|
+
version:
|
230
|
+
requirements: []
|
231
|
+
|
232
|
+
rubyforge_project:
|
233
|
+
rubygems_version: 1.3.5
|
234
|
+
signing_key:
|
235
|
+
specification_version: 3
|
236
|
+
summary: New Relic Ruby Performance Monitoring Agent
|
237
|
+
test_files: []
|
238
|
+
|