ghazel-newrelic_rpm 3.1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (255) hide show
  1. data/CHANGELOG +525 -0
  2. data/LICENSE +37 -0
  3. data/README.rdoc +179 -0
  4. data/bin/mongrel_rpm +33 -0
  5. data/bin/newrelic +13 -0
  6. data/bin/newrelic_cmd +5 -0
  7. data/cert/cacert.pem +118 -0
  8. data/cert/oldsite.pem +28 -0
  9. data/cert/site.pem +27 -0
  10. data/install.rb +9 -0
  11. data/lib/conditional_vendored_dependency_detection.rb +3 -0
  12. data/lib/conditional_vendored_metric_parser.rb +5 -0
  13. data/lib/new_relic/agent.rb +423 -0
  14. data/lib/new_relic/agent/agent.rb +1040 -0
  15. data/lib/new_relic/agent/beacon_configuration.rb +61 -0
  16. data/lib/new_relic/agent/browser_monitoring.rb +83 -0
  17. data/lib/new_relic/agent/busy_calculator.rb +91 -0
  18. data/lib/new_relic/agent/chained_call.rb +13 -0
  19. data/lib/new_relic/agent/error_collector.rb +203 -0
  20. data/lib/new_relic/agent/instrumentation.rb +9 -0
  21. data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -0
  22. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +62 -0
  23. data/lib/new_relic/agent/instrumentation/authlogic.rb +13 -0
  24. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +413 -0
  25. data/lib/new_relic/agent/instrumentation/data_mapper.rb +232 -0
  26. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +44 -0
  27. data/lib/new_relic/agent/instrumentation/memcache.rb +56 -0
  28. data/lib/new_relic/agent/instrumentation/merb/controller.rb +36 -0
  29. data/lib/new_relic/agent/instrumentation/merb/errors.rb +23 -0
  30. data/lib/new_relic/agent/instrumentation/metric_frame.rb +326 -0
  31. data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +84 -0
  32. data/lib/new_relic/agent/instrumentation/net.rb +23 -0
  33. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +34 -0
  34. data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -0
  35. data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
  36. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +83 -0
  37. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +36 -0
  38. data/lib/new_relic/agent/instrumentation/rails/active_record_instrumentation.rb +108 -0
  39. data/lib/new_relic/agent/instrumentation/rails/errors.rb +36 -0
  40. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +60 -0
  41. data/lib/new_relic/agent/instrumentation/rails3/active_record_instrumentation.rb +112 -0
  42. data/lib/new_relic/agent/instrumentation/rails3/errors.rb +31 -0
  43. data/lib/new_relic/agent/instrumentation/sinatra.rb +54 -0
  44. data/lib/new_relic/agent/instrumentation/sunspot.rb +23 -0
  45. data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +16 -0
  46. data/lib/new_relic/agent/method_tracer.rb +422 -0
  47. data/lib/new_relic/agent/sampler.rb +50 -0
  48. data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
  49. data/lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb +40 -0
  50. data/lib/new_relic/agent/samplers/memory_sampler.rb +144 -0
  51. data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
  52. data/lib/new_relic/agent/shim_agent.rb +29 -0
  53. data/lib/new_relic/agent/stats_engine.rb +24 -0
  54. data/lib/new_relic/agent/stats_engine/metric_stats.rb +182 -0
  55. data/lib/new_relic/agent/stats_engine/samplers.rb +89 -0
  56. data/lib/new_relic/agent/stats_engine/transactions.rb +184 -0
  57. data/lib/new_relic/agent/transaction_sample_builder.rb +101 -0
  58. data/lib/new_relic/agent/transaction_sampler.rb +378 -0
  59. data/lib/new_relic/agent/worker_loop.rb +81 -0
  60. data/lib/new_relic/collection_helper.rb +69 -0
  61. data/lib/new_relic/command.rb +85 -0
  62. data/lib/new_relic/commands/deployments.rb +105 -0
  63. data/lib/new_relic/commands/install.rb +91 -0
  64. data/lib/new_relic/control.rb +48 -0
  65. data/lib/new_relic/control/class_methods.rb +47 -0
  66. data/lib/new_relic/control/configuration.rb +157 -0
  67. data/lib/new_relic/control/frameworks/external.rb +16 -0
  68. data/lib/new_relic/control/frameworks/merb.rb +30 -0
  69. data/lib/new_relic/control/frameworks/rails.rb +151 -0
  70. data/lib/new_relic/control/frameworks/rails3.rb +70 -0
  71. data/lib/new_relic/control/frameworks/ruby.rb +42 -0
  72. data/lib/new_relic/control/frameworks/sinatra.rb +23 -0
  73. data/lib/new_relic/control/instance_methods.rb +154 -0
  74. data/lib/new_relic/control/instrumentation.rb +81 -0
  75. data/lib/new_relic/control/logging_methods.rb +88 -0
  76. data/lib/new_relic/control/profiling.rb +25 -0
  77. data/lib/new_relic/control/server_methods.rb +104 -0
  78. data/lib/new_relic/data_serialization.rb +84 -0
  79. data/lib/new_relic/delayed_job_injection.rb +38 -0
  80. data/lib/new_relic/histogram.rb +91 -0
  81. data/lib/new_relic/local_environment.rb +391 -0
  82. data/lib/new_relic/merbtasks.rb +6 -0
  83. data/lib/new_relic/metric_data.rb +46 -0
  84. data/lib/new_relic/metric_spec.rb +73 -0
  85. data/lib/new_relic/metrics.rb +9 -0
  86. data/lib/new_relic/noticed_error.rb +24 -0
  87. data/lib/new_relic/rack/browser_monitoring.rb +68 -0
  88. data/lib/new_relic/rack/developer_mode.rb +267 -0
  89. data/lib/new_relic/rack/metric_app.rb +65 -0
  90. data/lib/new_relic/rack/mongrel_rpm.ru +28 -0
  91. data/lib/new_relic/rack/newrelic.yml +27 -0
  92. data/lib/new_relic/rack_app.rb +6 -0
  93. data/lib/new_relic/recipes.rb +73 -0
  94. data/lib/new_relic/stats.rb +378 -0
  95. data/lib/new_relic/timer_lib.rb +27 -0
  96. data/lib/new_relic/transaction_analysis.rb +76 -0
  97. data/lib/new_relic/transaction_analysis/segment_summary.rb +47 -0
  98. data/lib/new_relic/transaction_sample.rb +272 -0
  99. data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
  100. data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
  101. data/lib/new_relic/transaction_sample/segment.rb +251 -0
  102. data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
  103. data/lib/new_relic/url_rule.rb +14 -0
  104. data/lib/new_relic/version.rb +55 -0
  105. data/lib/newrelic_rpm.rb +49 -0
  106. data/lib/tasks/all.rb +4 -0
  107. data/lib/tasks/install.rake +7 -0
  108. data/lib/tasks/tests.rake +19 -0
  109. data/newrelic.yml +265 -0
  110. data/newrelic_rpm.gemspec +330 -0
  111. data/recipes/newrelic.rb +6 -0
  112. data/test/active_record_fixtures.rb +77 -0
  113. data/test/config/newrelic.yml +48 -0
  114. data/test/config/test_control.rb +48 -0
  115. data/test/new_relic/agent/agent/connect_test.rb +316 -0
  116. data/test/new_relic/agent/agent/start_test.rb +340 -0
  117. data/test/new_relic/agent/agent/start_worker_thread_test.rb +155 -0
  118. data/test/new_relic/agent/agent_test.rb +173 -0
  119. data/test/new_relic/agent/agent_test_controller.rb +77 -0
  120. data/test/new_relic/agent/agent_test_controller_test.rb +366 -0
  121. data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
  122. data/test/new_relic/agent/beacon_configuration_test.rb +104 -0
  123. data/test/new_relic/agent/browser_monitoring_test.rb +274 -0
  124. data/test/new_relic/agent/busy_calculator_test.rb +81 -0
  125. data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
  126. data/test/new_relic/agent/error_collector_test.rb +168 -0
  127. data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +522 -0
  128. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +36 -0
  129. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
  130. data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +179 -0
  131. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +50 -0
  132. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
  133. data/test/new_relic/agent/instrumentation/queue_time_test.rb +387 -0
  134. data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
  135. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -0
  136. data/test/new_relic/agent/memcache_instrumentation_test.rb +107 -0
  137. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +164 -0
  138. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
  139. data/test/new_relic/agent/method_tracer_test.rb +386 -0
  140. data/test/new_relic/agent/mock_scope_listener.rb +23 -0
  141. data/test/new_relic/agent/rpm_agent_test.rb +149 -0
  142. data/test/new_relic/agent/sampler_test.rb +19 -0
  143. data/test/new_relic/agent/shim_agent_test.rb +20 -0
  144. data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
  145. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +81 -0
  146. data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
  147. data/test/new_relic/agent/stats_engine_test.rb +185 -0
  148. data/test/new_relic/agent/transaction_sample_builder_test.rb +195 -0
  149. data/test/new_relic/agent/transaction_sampler_test.rb +945 -0
  150. data/test/new_relic/agent/worker_loop_test.rb +66 -0
  151. data/test/new_relic/collection_helper_test.rb +127 -0
  152. data/test/new_relic/command/deployments_test.rb +68 -0
  153. data/test/new_relic/control/class_methods_test.rb +62 -0
  154. data/test/new_relic/control/logging_methods_test.rb +157 -0
  155. data/test/new_relic/control_test.rb +195 -0
  156. data/test/new_relic/data_serialization_test.rb +70 -0
  157. data/test/new_relic/local_environment_test.rb +72 -0
  158. data/test/new_relic/metric_data_test.rb +125 -0
  159. data/test/new_relic/metric_spec_test.rb +95 -0
  160. data/test/new_relic/rack/all_test.rb +11 -0
  161. data/test/new_relic/rack/browser_monitoring_test.rb +84 -0
  162. data/test/new_relic/rack/developer_mode_test.rb +43 -0
  163. data/test/new_relic/stats_test.rb +426 -0
  164. data/test/new_relic/transaction_analysis/segment_summary_test.rb +77 -0
  165. data/test/new_relic/transaction_analysis_test.rb +121 -0
  166. data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
  167. data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
  168. data/test/new_relic/transaction_sample/segment_test.rb +454 -0
  169. data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
  170. data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
  171. data/test/new_relic/transaction_sample_test.rb +170 -0
  172. data/test/new_relic/version_number_test.rb +89 -0
  173. data/test/test_contexts.rb +29 -0
  174. data/test/test_helper.rb +144 -0
  175. data/ui/helpers/developer_mode_helper.rb +351 -0
  176. data/ui/helpers/google_pie_chart.rb +49 -0
  177. data/ui/views/layouts/newrelic_default.rhtml +47 -0
  178. data/ui/views/newrelic/_explain_plans.rhtml +27 -0
  179. data/ui/views/newrelic/_sample.rhtml +20 -0
  180. data/ui/views/newrelic/_segment.rhtml +28 -0
  181. data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
  182. data/ui/views/newrelic/_segment_row.rhtml +12 -0
  183. data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
  184. data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
  185. data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
  186. data/ui/views/newrelic/_sql_row.rhtml +16 -0
  187. data/ui/views/newrelic/_stack_trace.rhtml +15 -0
  188. data/ui/views/newrelic/_table.rhtml +12 -0
  189. data/ui/views/newrelic/explain_sql.rhtml +43 -0
  190. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  191. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  192. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  193. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  194. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  195. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  196. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  197. data/ui/views/newrelic/file/images/textmate.png +0 -0
  198. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
  199. data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
  200. data/ui/views/newrelic/file/stylesheets/style.css +490 -0
  201. data/ui/views/newrelic/index.rhtml +71 -0
  202. data/ui/views/newrelic/sample_not_found.rhtml +2 -0
  203. data/ui/views/newrelic/show_sample.rhtml +80 -0
  204. data/ui/views/newrelic/show_source.rhtml +3 -0
  205. data/ui/views/newrelic/threads.rhtml +53 -0
  206. data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +19 -0
  207. data/vendor/gems/dependency_detection-0.0.1.build/README +0 -0
  208. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +57 -0
  209. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
  210. data/vendor/gems/metric_parser-0.1.0.pre1/LICENSE +0 -0
  211. data/vendor/gems/metric_parser-0.1.0.pre1/README +0 -0
  212. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
  213. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
  214. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
  215. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
  216. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
  217. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
  218. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
  219. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
  220. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
  221. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
  222. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
  223. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
  224. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
  225. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
  226. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
  227. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
  228. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
  229. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
  230. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
  231. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
  232. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
  233. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
  234. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
  235. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
  236. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
  237. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +122 -0
  238. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
  239. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
  240. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
  241. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
  242. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
  243. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
  244. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
  245. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
  246. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
  247. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
  248. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
  249. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
  250. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
  251. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +66 -0
  252. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
  253. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
  254. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
  255. metadata +399 -0
@@ -0,0 +1,71 @@
1
+ <table>
2
+ <tr>
3
+ <td valign=top>
4
+ <table class="transaction_list_table">
5
+ <thead>
6
+ <tr>
7
+ <td>
8
+ <%= link_to_if (params[:h] ||params[:u]), 'Timestamp' %>
9
+ </td>
10
+ <td>
11
+ <%= link_to_unless_current('Resp. Time', :h => 'y') %>
12
+ </td>
13
+ <td>
14
+ <%= link_to_unless_current('URL', :u =>'y') %>
15
+ </td>
16
+ <td/>
17
+ </tr>
18
+ </thead><% @samples.each do |sample| %>
19
+ <%= render :partial => :sample, :object => sample %>
20
+ <% end %>
21
+ </table>
22
+ </td>
23
+ <td valign=top>
24
+ <% if defined?(Unicorn) || defined?(Passenger) %>
25
+ <div class="flash">
26
+ <p id="errorExplanation">
27
+ We've noticed you're running a forking web server, like Unicorn or Passenger. See Below</p><p> Developer mode may be unpredictable,
28
+ since those servers run many processes and developer mode is entirely in the process.</p><p> We suggest you try Thin,
29
+ Mongrel, or another single-process web server for development mode.</p><p>
30
+ (You can ignore this message if you're sure that you're running only one process, and it's not being reaped when inactive.)
31
+ </p>
32
+ </div>
33
+ <% end %>
34
+
35
+
36
+ <%= link_to_if @samples.size > 0, "Clear Transactions (#{@samples.size})", 'reset' %><br/>
37
+ <%= link_to "List Threads", 'threads' %><br/>
38
+ <% if NewRelic::Control.instance.profiling_available? %>
39
+ <p><b>Profiling available:</b>
40
+ <% if NewRelic::Control.instance.profiling? %>
41
+ <%= link_to "Stop Profiling", 'profile?stop=true'%>
42
+ <% else %>
43
+ <%= link_to "Start Profiling", 'profile?start=true' %>
44
+ <% end %>
45
+ </p>
46
+ <% else %>
47
+ <p>You can use the ruby-prof gem to display profiles of your actions with Developer Mode. Just
48
+ install the ruby-prof gem and restart your app.</p>
49
+ <% end %>
50
+ <h3>Welcome</h3>
51
+ <p>
52
+ Welcome to <b>New Relic Developer Mode</b>. This Rails extension traces the performance activity
53
+ of your 100 most recent controller actions in your rails application, and presents the performance
54
+ information for your analysis.
55
+ </p>
56
+ <p>
57
+ The url's of the most recent transactions are presented to the left, most-recent first. Click
58
+ on any one of these to drill down and inspect its performance information.
59
+ </p>
60
+ <p>
61
+ The identical agent technology that provides this data is also capable of monitoring your application as it
62
+ runs in production. For more information, visit <a href="http://www.newrelic.com">http://www.newrelic.com</a>.
63
+ </p>
64
+ <p>
65
+ Note, to increase the accuracy of our performance measurement, we automatically "strip out" any
66
+ time spent in application code loading, which will not happen when your application runs in
67
+ production mode.
68
+ </p>
69
+ </td>
70
+ </tr>
71
+ </table>
@@ -0,0 +1,2 @@
1
+ <p>No sample found with this id. Did you restart your application? </p>
2
+ <%= link_to "Back", ''%>
@@ -0,0 +1,80 @@
1
+ <script type="text/javascript" src="/newrelic/file/javascript/transaction_sample.js"></script>
2
+ <div id='summary_table'>
3
+ <table class="light_background">
4
+ <tr>
5
+ <th>URL:</th>
6
+ <td><%= @sample.params[:uri]%></td>
7
+ </tr>
8
+ <tr>
9
+ <th>Controller:</th>
10
+ <td><%= @sample_controller_name%></td>
11
+ </tr>
12
+ <tr>
13
+ <th>Action:</th>
14
+ <td><%= @sample_action_name%></td>
15
+ </tr>
16
+ <tr>
17
+ <th>Start Time:</th>
18
+ <td><%= format_timestamp(@sample.start_time) %></td>
19
+ </tr>
20
+ <tr>
21
+ <th>Duration:</th>
22
+ <td><%= colorize(@sample.duration, 1, 2) %> ms</td>
23
+ </tr>
24
+ <tr>
25
+ <th>CPU Burn:</th>
26
+ <td><%= to_ms(@sample.params[:cpu_time]) if @sample.params[:cpu_time] %> ms</td>
27
+ </tr>
28
+
29
+ <% unless @custom_params.empty? %>
30
+ <tr>
31
+ <th valign="top">Custom Params:</th>
32
+ <td>
33
+ <small>
34
+ <% @custom_params.each do |k,v| %>
35
+ <b><%= h k %>: </b><%=h v%><br/>
36
+ <% end %>
37
+ </small>
38
+ </td>
39
+ </tr>
40
+ <% end %>
41
+
42
+ <% unless @request_params.empty? %>
43
+ <tr>
44
+ <th valign="top">HTTP Params:</th>
45
+ <td>
46
+ <a href="#" onClick="show_request_params()" id="params_link"><%= @request_params.length %>...</a>
47
+
48
+ <div id='request_params' style="display: none;">
49
+ <small>
50
+ <% @request_params.each do |k,v| %>
51
+ <b><%= h k %>: </b><%=h v%><br/>
52
+ <% end %>
53
+ </small>
54
+ </div>
55
+ </td>
56
+ </tr>
57
+ <% end %>
58
+
59
+ </table>
60
+ </div>
61
+
62
+ <br/>
63
+ <div id="view_sample">
64
+ <% if @sample.profile %>
65
+ <%= profile_table(@sample.profile) %>
66
+ <% else %>
67
+ <div align=center width="100%">
68
+ <%= show_view_link 'Summary', 'show_sample_summary' %>
69
+ <%= show_view_link 'Details', 'show_sample_detail' %>
70
+ <%= show_view_link 'SQL', 'show_sample_sql' %>
71
+ </div>
72
+ <br/>
73
+
74
+ <%= %w[show_sample_summary show_sample_sql show_sample_detail].collect do |p|
75
+ options = {:align => 'center', :id => p}
76
+ options[:style] = 'display: none' unless @req.path.include?(p)
77
+ content_tag('div', render(:partial => p), options)
78
+ end.join(' ') %>
79
+ <% end %>
80
+ </div>
@@ -0,0 +1,3 @@
1
+
2
+ <h2>File: <%= @filename %></h2>
3
+ <%= @source %>
@@ -0,0 +1,53 @@
1
+
2
+ <h2>Thread List</h2>
3
+ <p><%= link_to 'Back', 'index' %></p>
4
+ <table>
5
+ <thead><th class="title" colspan="5">Application Threads</th></thead>
6
+ <thead>
7
+ <th class="left">Name</th>
8
+ <th class="left">Status</th>
9
+ <th class="left">Group</th>
10
+ <th class="left">Priority</th>
11
+ <th class="left">Locals</th>
12
+ </thead>
13
+ <%
14
+ main = Thread.main
15
+ threads = Thread.list - [ main ]
16
+ nr_threads = []
17
+ threads.delete_if { | thread | nr_threads << thread if thread.key? 'newrelic_label' }
18
+ ([ main ] + threads).each_with_index do | thread, i | %>
19
+ <tr class="odd_row">
20
+ <td valign="top"><%= h(thread == main ? 'main' : thread.to_s) %></td>
21
+ <td valign="top"><%= h(thread.status || 'terminated with exception') %></td>
22
+ <td valign="top"><%= h(thread.group || 'none') %></td>
23
+ <td valign="top"><%= h thread.priority %></td>
24
+ <td class="locals">
25
+ <%= thread.keys.map{|k| h k}.join("</br>") %>
26
+ </td>
27
+ </tr>
28
+ <% end %>
29
+ <% if nr_threads.size > 0 %>
30
+ <tr><td>&nbsp;</td></tr>
31
+ <thead><th class="title" colspan="5">New Relic Agent Threads</th></thead>
32
+ <thead>
33
+ <th class="left">Name</th>
34
+ <th class="left">Status</th>
35
+ <th class="left">Group</th>
36
+ <th class="left">Priority</th>
37
+ <th class="left">Locals</th>
38
+ </thead>
39
+
40
+ <% nr_threads.each_with_index do | thread, i | %>
41
+ <tr class="odd_row">
42
+ <td valign="top"><%= h thread['newrelic_label'] %></td>
43
+ <td valign="top"><%= h(thread.status || 'terminated with exception') %></td>
44
+ <td valign="top"><%= h(thread.group || 'none') %></td>
45
+ <td valign="top"><%= h thread.priority %></td>
46
+ <td class="locals">
47
+ <%= (thread.keys - ['newrelic_label']).map{|k| h k}.join("</br>") %>
48
+ </td>
49
+ </tr>
50
+ <% end %>
51
+ <% end %>
52
+
53
+ </table>
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2010-2011 Justin George
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1,57 @@
1
+ require 'dependency_detection/version'
2
+ module DependencyDetection
3
+
4
+ module_function
5
+ @@items = []
6
+ def defer(&block)
7
+ item = Dependent.new
8
+ item.instance_eval(&block)
9
+ @@items << item
10
+ end
11
+
12
+ def detect!
13
+ @@items.each do |item|
14
+ if item.dependencies_satisfied?
15
+ item.execute
16
+ end
17
+ end
18
+ end
19
+
20
+ class Dependent
21
+ attr_reader :executed
22
+ def executed!
23
+ @executed = true
24
+ end
25
+
26
+ attr_reader :dependencies
27
+
28
+ def initialize
29
+ @dependencies = []
30
+ @executes = []
31
+ end
32
+
33
+ def dependencies_satisfied?
34
+ !executed and check_dependencies
35
+ end
36
+
37
+ def execute
38
+ @executes.each do |x|
39
+ x.call
40
+ end
41
+ ensure
42
+ executed!
43
+ end
44
+
45
+ def check_dependencies
46
+ dependencies && dependencies.all? { |d| d.call }
47
+ end
48
+
49
+ def depends_on
50
+ @dependencies << Proc.new
51
+ end
52
+
53
+ def executes
54
+ @executes << Proc.new
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,3 @@
1
+ module DependencyDetection
2
+ VERSION='0.0.1.build'
3
+ end
@@ -0,0 +1 @@
1
+ require 'new_relic/metric_parser'
@@ -0,0 +1,64 @@
1
+ module NewRelic
2
+ # Metric parsing logic mixin. Given a metric name (attribute called "name"), provide a set of accessors
3
+ # that enable inspection of the metric. A metric has 2 or more segments, each separated
4
+ # by the '/' character. The metric's category is specified by its first segment. Following
5
+ # are the set of categories currently supported by NewRelic's default metric set:
6
+ #
7
+ # * Controller
8
+ # * ActiveRecord
9
+ # * Rails
10
+ # * WebService
11
+ # * View
12
+ # * Database
13
+ # * Custom
14
+ #
15
+ # Based on the category of the metric, specific parsing logic is defined in the source files
16
+ # countained in the "metric_parsers" sub directory local to this file.
17
+ #
18
+ module MetricParser
19
+ end
20
+ end
21
+
22
+ require 'new_relic/metric_parser/metric_parser'
23
+ require 'new_relic/metric_parser/apdex'
24
+
25
+ require 'new_relic/metric_parser/action_mailer'
26
+ require 'new_relic/metric_parser/active_merchant'
27
+ require 'new_relic/metric_parser/active_record'
28
+ require 'new_relic/metric_parser/apdex'
29
+ require 'new_relic/metric_parser/background_transaction'
30
+ require 'new_relic/metric_parser/client'
31
+ require 'new_relic/metric_parser/controller'
32
+ require 'new_relic/metric_parser/controller_cpu'
33
+ require 'new_relic/metric_parser/controller_ext'
34
+ require 'new_relic/metric_parser/database'
35
+ require 'new_relic/metric_parser/database_pool'
36
+ require 'new_relic/metric_parser/dot_net'
37
+ require 'new_relic/metric_parser/errors'
38
+ require 'new_relic/metric_parser/external'
39
+ require 'new_relic/metric_parser/frontend'
40
+ require 'new_relic/metric_parser/gc'
41
+ require 'new_relic/metric_parser/hibernate_session'
42
+ require 'new_relic/metric_parser/java'
43
+ require 'new_relic/metric_parser/java_parser'
44
+ require 'new_relic/metric_parser/jsp'
45
+ require 'new_relic/metric_parser/jsp_tag'
46
+ require 'new_relic/metric_parser/mem_cache'
47
+ require 'new_relic/metric_parser/metric_parser'
48
+ require 'new_relic/metric_parser/orm'
49
+ require 'new_relic/metric_parser/other_transaction'
50
+ require 'new_relic/metric_parser/servlet'
51
+ require 'new_relic/metric_parser/servlet_context_listener'
52
+ require 'new_relic/metric_parser/servlet_filter'
53
+ require 'new_relic/metric_parser/solr'
54
+ require 'new_relic/metric_parser/solr_request_handler'
55
+ require 'new_relic/metric_parser/spring'
56
+ require 'new_relic/metric_parser/spring_controller'
57
+ require 'new_relic/metric_parser/spring_view'
58
+ require 'new_relic/metric_parser/struts_action'
59
+ require 'new_relic/metric_parser/struts_result'
60
+ require 'new_relic/metric_parser/version'
61
+ require 'new_relic/metric_parser/view'
62
+ require 'new_relic/metric_parser/web_frontend'
63
+ require 'new_relic/metric_parser/web_service'
64
+ require 'new_relic/metric_parser/web_transaction'
@@ -0,0 +1,14 @@
1
+ require 'new_relic/metric_parser'
2
+ module NewRelic
3
+ module MetricParser
4
+ class ActionMailer < NewRelic::MetricParser::MetricParser
5
+
6
+ def is_action_mailer?; true; end
7
+
8
+ def short_name
9
+ "ActionMailer - #{segments[1]}"
10
+ end
11
+
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,31 @@
1
+ require 'new_relic/metric_parser'
2
+ module NewRelic
3
+ module MetricParser
4
+ class ActiveMerchant < NewRelic::MetricParser::MetricParser
5
+
6
+ def is_active_merchant?; true; end
7
+
8
+ def is_active_merchant_gateway?
9
+ segments[1] == 'gateway'
10
+ end
11
+
12
+ def is_active_merchant_operation?
13
+ segments[1] == 'operation'
14
+ end
15
+
16
+ def gateway_name
17
+ # ends in "Gateway" - trim that off
18
+ segments[2][0..-8].titleize
19
+ end
20
+
21
+ def operation_name
22
+ segments[2]
23
+ end
24
+
25
+ def short_name
26
+ segments[2]
27
+ end
28
+
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,33 @@
1
+ require 'new_relic/metric_parser'
2
+ module NewRelic
3
+ module MetricParser
4
+ class ActiveRecord < NewRelic::MetricParser::MetricParser
5
+ def is_active_record? ; true; end
6
+
7
+ def model_class
8
+ return segments[1]
9
+ end
10
+
11
+ def is_database?
12
+ true
13
+ end
14
+ def legend_name
15
+ if name == 'ActiveRecord/all'
16
+ 'Database'
17
+ else
18
+ super
19
+ end
20
+ end
21
+ def tooltip_name
22
+ if name == 'ActiveRecord/all'
23
+ 'all SQL execution'
24
+ else
25
+ super
26
+ end
27
+ end
28
+ def developer_name
29
+ "#{model_class}##{segments.last}"
30
+ end
31
+ end
32
+ end
33
+ end