wd_newrelic_rpm 3.3.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) hide show
  1. data/CHANGELOG +591 -0
  2. data/LICENSE +64 -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 +467 -0
  14. data/lib/new_relic/agent/agent.rb +1325 -0
  15. data/lib/new_relic/agent/beacon_configuration.rb +121 -0
  16. data/lib/new_relic/agent/browser_monitoring.rb +142 -0
  17. data/lib/new_relic/agent/busy_calculator.rb +99 -0
  18. data/lib/new_relic/agent/chained_call.rb +13 -0
  19. data/lib/new_relic/agent/database.rb +223 -0
  20. data/lib/new_relic/agent/error_collector.rb +251 -0
  21. data/lib/new_relic/agent/instrumentation.rb +9 -0
  22. data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
  23. data/lib/new_relic/agent/instrumentation/active_record.rb +137 -0
  24. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
  25. data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
  26. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +443 -0
  27. data/lib/new_relic/agent/instrumentation/data_mapper.rb +238 -0
  28. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
  29. data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
  30. data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
  31. data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
  32. data/lib/new_relic/agent/instrumentation/metric_frame.rb +353 -0
  33. data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
  34. data/lib/new_relic/agent/instrumentation/net.rb +29 -0
  35. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +37 -0
  36. data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -0
  37. data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
  38. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
  39. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
  40. data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
  41. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
  42. data/lib/new_relic/agent/instrumentation/rails3/errors.rb +37 -0
  43. data/lib/new_relic/agent/instrumentation/sinatra.rb +78 -0
  44. data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
  45. data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +21 -0
  46. data/lib/new_relic/agent/method_tracer.rb +528 -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 +143 -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/sql_sampler.rb +286 -0
  54. data/lib/new_relic/agent/stats_engine.rb +26 -0
  55. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +123 -0
  56. data/lib/new_relic/agent/stats_engine/metric_stats.rb +187 -0
  57. data/lib/new_relic/agent/stats_engine/samplers.rb +95 -0
  58. data/lib/new_relic/agent/stats_engine/transactions.rb +125 -0
  59. data/lib/new_relic/agent/transaction_info.rb +74 -0
  60. data/lib/new_relic/agent/transaction_sample_builder.rb +116 -0
  61. data/lib/new_relic/agent/transaction_sampler.rb +468 -0
  62. data/lib/new_relic/agent/worker_loop.rb +89 -0
  63. data/lib/new_relic/collection_helper.rb +77 -0
  64. data/lib/new_relic/command.rb +85 -0
  65. data/lib/new_relic/commands/deployments.rb +105 -0
  66. data/lib/new_relic/commands/install.rb +80 -0
  67. data/lib/new_relic/control.rb +46 -0
  68. data/lib/new_relic/control/class_methods.rb +53 -0
  69. data/lib/new_relic/control/configuration.rb +206 -0
  70. data/lib/new_relic/control/frameworks.rb +10 -0
  71. data/lib/new_relic/control/frameworks/external.rb +16 -0
  72. data/lib/new_relic/control/frameworks/merb.rb +31 -0
  73. data/lib/new_relic/control/frameworks/rails.rb +164 -0
  74. data/lib/new_relic/control/frameworks/rails3.rb +75 -0
  75. data/lib/new_relic/control/frameworks/ruby.rb +42 -0
  76. data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
  77. data/lib/new_relic/control/instance_methods.rb +179 -0
  78. data/lib/new_relic/control/instrumentation.rb +100 -0
  79. data/lib/new_relic/control/logging_methods.rb +143 -0
  80. data/lib/new_relic/control/profiling.rb +25 -0
  81. data/lib/new_relic/control/server_methods.rb +114 -0
  82. data/lib/new_relic/data_serialization.rb +151 -0
  83. data/lib/new_relic/delayed_job_injection.rb +51 -0
  84. data/lib/new_relic/language_support.rb +73 -0
  85. data/lib/new_relic/local_environment.rb +428 -0
  86. data/lib/new_relic/merbtasks.rb +6 -0
  87. data/lib/new_relic/metric_data.rb +51 -0
  88. data/lib/new_relic/metric_spec.rb +76 -0
  89. data/lib/new_relic/metrics.rb +9 -0
  90. data/lib/new_relic/noticed_error.rb +29 -0
  91. data/lib/new_relic/rack/browser_monitoring.rb +76 -0
  92. data/lib/new_relic/rack/developer_mode.rb +268 -0
  93. data/lib/new_relic/recipes.rb +77 -0
  94. data/lib/new_relic/stats.rb +335 -0
  95. data/lib/new_relic/timer_lib.rb +27 -0
  96. data/lib/new_relic/transaction_analysis.rb +77 -0
  97. data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
  98. data/lib/new_relic/transaction_sample.rb +261 -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 +203 -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 +312 -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/fixtures/proc_cpuinfo.txt +575 -0
  116. data/test/new_relic/agent/agent/connect_test.rb +403 -0
  117. data/test/new_relic/agent/agent/start_test.rb +255 -0
  118. data/test/new_relic/agent/agent/start_worker_thread_test.rb +153 -0
  119. data/test/new_relic/agent/agent_test.rb +140 -0
  120. data/test/new_relic/agent/agent_test_controller.rb +77 -0
  121. data/test/new_relic/agent/agent_test_controller_test.rb +382 -0
  122. data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
  123. data/test/new_relic/agent/beacon_configuration_test.rb +111 -0
  124. data/test/new_relic/agent/browser_monitoring_test.rb +323 -0
  125. data/test/new_relic/agent/busy_calculator_test.rb +81 -0
  126. data/test/new_relic/agent/database_test.rb +149 -0
  127. data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
  128. data/test/new_relic/agent/error_collector_test.rb +192 -0
  129. data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +576 -0
  130. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +34 -0
  131. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
  132. data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
  133. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +50 -0
  134. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
  135. data/test/new_relic/agent/instrumentation/queue_time_test.rb +382 -0
  136. data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
  137. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -0
  138. data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
  139. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +164 -0
  140. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
  141. data/test/new_relic/agent/method_tracer_test.rb +386 -0
  142. data/test/new_relic/agent/mock_scope_listener.rb +23 -0
  143. data/test/new_relic/agent/rpm_agent_test.rb +149 -0
  144. data/test/new_relic/agent/sampler_test.rb +19 -0
  145. data/test/new_relic/agent/shim_agent_test.rb +20 -0
  146. data/test/new_relic/agent/sql_sampler_test.rb +192 -0
  147. data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
  148. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +82 -0
  149. data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
  150. data/test/new_relic/agent/stats_engine_test.rb +220 -0
  151. data/test/new_relic/agent/transaction_info_test.rb +13 -0
  152. data/test/new_relic/agent/transaction_sample_builder_test.rb +219 -0
  153. data/test/new_relic/agent/transaction_sampler_test.rb +967 -0
  154. data/test/new_relic/agent/worker_loop_test.rb +66 -0
  155. data/test/new_relic/agent_test.rb +187 -0
  156. data/test/new_relic/collection_helper_test.rb +149 -0
  157. data/test/new_relic/command/deployments_test.rb +68 -0
  158. data/test/new_relic/control/class_methods_test.rb +62 -0
  159. data/test/new_relic/control/configuration_test.rb +84 -0
  160. data/test/new_relic/control/logging_methods_test.rb +185 -0
  161. data/test/new_relic/control_test.rb +256 -0
  162. data/test/new_relic/data_serialization_test.rb +208 -0
  163. data/test/new_relic/delayed_job_injection_test.rb +16 -0
  164. data/test/new_relic/local_environment_test.rb +85 -0
  165. data/test/new_relic/metric_data_test.rb +125 -0
  166. data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
  167. data/test/new_relic/metric_spec_test.rb +95 -0
  168. data/test/new_relic/rack/all_test.rb +11 -0
  169. data/test/new_relic/rack/browser_monitoring_test.rb +142 -0
  170. data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
  171. data/test/new_relic/rack/developer_mode_test.rb +74 -0
  172. data/test/new_relic/stats_test.rb +411 -0
  173. data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
  174. data/test/new_relic/transaction_analysis_test.rb +121 -0
  175. data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
  176. data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
  177. data/test/new_relic/transaction_sample/segment_test.rb +389 -0
  178. data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
  179. data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
  180. data/test/new_relic/transaction_sample_test.rb +177 -0
  181. data/test/new_relic/version_number_test.rb +89 -0
  182. data/test/script/build_test_gem.sh +51 -0
  183. data/test/script/ci.sh +94 -0
  184. data/test/script/ci_bench.sh +52 -0
  185. data/test/test_contexts.rb +29 -0
  186. data/test/test_helper.rb +155 -0
  187. data/ui/helpers/developer_mode_helper.rb +357 -0
  188. data/ui/helpers/google_pie_chart.rb +48 -0
  189. data/ui/views/layouts/newrelic_default.rhtml +47 -0
  190. data/ui/views/newrelic/_explain_plans.rhtml +27 -0
  191. data/ui/views/newrelic/_sample.rhtml +20 -0
  192. data/ui/views/newrelic/_segment.rhtml +28 -0
  193. data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
  194. data/ui/views/newrelic/_segment_row.rhtml +12 -0
  195. data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
  196. data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
  197. data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
  198. data/ui/views/newrelic/_sql_row.rhtml +16 -0
  199. data/ui/views/newrelic/_stack_trace.rhtml +15 -0
  200. data/ui/views/newrelic/_table.rhtml +12 -0
  201. data/ui/views/newrelic/explain_sql.rhtml +43 -0
  202. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  203. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  204. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  205. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  206. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  207. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  208. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  209. data/ui/views/newrelic/file/images/textmate.png +0 -0
  210. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
  211. data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
  212. data/ui/views/newrelic/file/stylesheets/style.css +490 -0
  213. data/ui/views/newrelic/index.rhtml +71 -0
  214. data/ui/views/newrelic/sample_not_found.rhtml +2 -0
  215. data/ui/views/newrelic/show_sample.rhtml +80 -0
  216. data/ui/views/newrelic/show_source.rhtml +3 -0
  217. data/ui/views/newrelic/threads.rhtml +53 -0
  218. data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
  219. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
  220. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
  221. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
  222. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
  223. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
  224. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
  225. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
  226. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
  227. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
  228. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
  229. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
  230. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
  231. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
  232. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
  233. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
  234. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
  235. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
  236. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
  237. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
  238. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
  239. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
  240. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
  241. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
  242. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
  243. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
  244. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
  245. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
  246. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
  247. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
  248. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
  249. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
  250. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
  251. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
  252. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
  253. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
  254. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
  255. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
  256. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
  257. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
  258. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
  259. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
  260. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
  261. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
  262. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
  263. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
  264. metadata +376 -0
@@ -0,0 +1,6 @@
1
+ namespace :newrelic do
2
+ desc "Install the developer mode newrelic.yml file"
3
+ task :default do
4
+ load File.expand_path(File.join(__FILE__,"..","..","install.rb"))
5
+ end
6
+ end
@@ -0,0 +1,51 @@
1
+ module NewRelic
2
+ class MetricData
3
+ # nil, or a NewRelic::MetricSpec object if we have no cached ID
4
+ attr_accessor :metric_spec
5
+ # nil or a cached integer ID for the metric from the collector.
6
+ attr_accessor :metric_id
7
+ # the actual statistics object
8
+ attr_accessor :stats
9
+
10
+ def initialize(metric_spec, stats, metric_id)
11
+ @metric_spec = metric_spec
12
+ self.stats = stats
13
+ self.metric_id = metric_id
14
+ end
15
+
16
+ def eql?(o)
17
+ (metric_spec.eql? o.metric_spec) && (stats.eql? o.stats)
18
+ end
19
+
20
+ def original_spec
21
+ @original_spec || @metric_spec
22
+ end
23
+
24
+ # assigns a new metric spec, and retains the old metric spec as
25
+ # @original_spec if it exists currently
26
+ def metric_spec= new_spec
27
+ @original_spec = @metric_spec if @metric_spec
28
+ @metric_spec = new_spec
29
+ end
30
+
31
+ def hash
32
+ metric_spec.hash ^ stats.hash
33
+ end
34
+
35
+ # Serialize with all attributes, but if the metric id is not nil, then don't send the metric spec
36
+ def to_json(*a)
37
+ %Q[{"metric_spec":#{metric_id ? 'null' : metric_spec.to_json},"stats":{"total_exclusive_time":#{stats.total_exclusive_time},"min_call_time":#{stats.min_call_time},"call_count":#{stats.call_count},"sum_of_squares":#{stats.sum_of_squares},"total_call_time":#{stats.total_call_time},"max_call_time":#{stats.max_call_time}},"metric_id":#{metric_id ? metric_id : 'null'}}]
38
+ end
39
+
40
+ def to_s
41
+ if metric_spec
42
+ "#{metric_spec.name}(#{metric_spec.scope}): #{stats}"
43
+ else
44
+ "#{metric_id}: #{stats}"
45
+ end
46
+ end
47
+ def inspect
48
+ "#<MetricData metric_spec:#{metric_spec.inspect}, stats:#{stats.inspect}, metric_id:#{metric_id.inspect}>"
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,76 @@
1
+ # this struct uniquely defines a metric, optionally inside
2
+ # the call scope of another metric
3
+ class NewRelic::MetricSpec
4
+ attr_accessor :name
5
+ attr_accessor :scope
6
+
7
+ # the maximum length of a metric name or metric scope
8
+ MAX_LENGTH = 255
9
+ LENGTH_RANGE = (0...MAX_LENGTH)
10
+ # Need a "zero-arg" constructor so it can be instantiated from java (using
11
+ # jruby) for sending responses to ruby agents from the java collector.
12
+ #
13
+ def initialize(metric_name = '', metric_scope = '')
14
+ self.name = (metric_name || '') && metric_name[LENGTH_RANGE]
15
+ self.scope = metric_scope && metric_scope[LENGTH_RANGE]
16
+ end
17
+
18
+ # truncates the name and scope to the MAX_LENGTH
19
+ def truncate!
20
+ self.name = name[LENGTH_RANGE] if name && name.size > MAX_LENGTH
21
+ self.scope = scope[LENGTH_RANGE] if scope && scope.size > MAX_LENGTH
22
+ end
23
+
24
+ def ==(o)
25
+ self.eql?(o)
26
+ end
27
+
28
+ def eql? o
29
+ self.class == o.class &&
30
+ name.eql?(o.name) &&
31
+ # coerce scope to a string and compare
32
+ scope.to_s == o.scope.to_s
33
+ end
34
+
35
+ def hash
36
+ h = name.hash
37
+ h ^= scope.hash unless scope.nil?
38
+ h
39
+ end
40
+ # return a new metric spec if the given regex
41
+ # matches the name or scope.
42
+ def sub(pattern, replacement, apply_to_scope = true)
43
+ NewRelic::Control.instance.log.warn("The sub method on metric specs is deprecated") rescue nil
44
+ return nil if name !~ pattern &&
45
+ (!apply_to_scope || scope.nil? || scope !~ pattern)
46
+ new_name = name.sub(pattern, replacement)[LENGTH_RANGE]
47
+
48
+ if apply_to_scope
49
+ new_scope = (scope && scope.sub(pattern, replacement)[LENGTH_RANGE])
50
+ else
51
+ new_scope = scope
52
+ end
53
+
54
+ self.class.new new_name, new_scope
55
+ end
56
+
57
+ def to_s
58
+ return name if scope.empty?
59
+ "#{name}:#{scope}"
60
+ end
61
+
62
+ def inspect
63
+ "#<NewRelic::MetricSpec '#{name}':'#{scope}'>"
64
+ end
65
+
66
+ def to_json(*a)
67
+ {'name' => name,
68
+ 'scope' => scope}.to_json(*a)
69
+ end
70
+
71
+ def <=>(o)
72
+ namecmp = self.name <=> o.name
73
+ return namecmp if namecmp != 0
74
+ return (self.scope || '') <=> (o.scope || '')
75
+ end
76
+ end
@@ -0,0 +1,9 @@
1
+ module NewRelic
2
+ module Metrics
3
+ CONTROLLER = "Controller"
4
+ DISPATCHER = "HttpDispatcher"
5
+ ACTIVE_RECORD = "ActiveRecord"
6
+ USER_TIME = "CPU/User Time"
7
+ MEMORY = "Memory/Physical"
8
+ end
9
+ end
@@ -0,0 +1,29 @@
1
+ # This class encapsulates an error that was noticed by New Relic in a managed app.
2
+ class NewRelic::NoticedError
3
+ extend NewRelic::CollectionHelper
4
+ attr_accessor :path, :timestamp, :params, :exception_class, :message
5
+
6
+ def initialize(path, data, exception, timestamp = Time.now)
7
+ self.path = path
8
+ self.params = NewRelic::NoticedError.normalize_params(data)
9
+
10
+ self.exception_class = exception.is_a?(Exception) ? exception.class.name : 'Error'
11
+
12
+ if exception.respond_to?('original_exception')
13
+ self.message = exception.original_exception.message.to_s
14
+ else
15
+ self.message = (exception || '<no message>').to_s
16
+ end
17
+
18
+ # clamp long messages to 4k so that we don't send a lot of
19
+ # overhead across the wire
20
+ self.message = self.message[0..4095] if self.message.length > 4096
21
+
22
+ # obfuscate error message if necessary
23
+ if NewRelic::Control.instance.fetch('high_security', false)
24
+ self.message = NewRelic::Agent::Database.obfuscate_sql(self.message)
25
+ end
26
+
27
+ self.timestamp = timestamp
28
+ end
29
+ end
@@ -0,0 +1,76 @@
1
+ require 'rack'
2
+
3
+ module NewRelic::Rack
4
+ class BrowserMonitoring
5
+
6
+ def initialize(app, options = {})
7
+ @app = app
8
+ end
9
+
10
+ # method required by Rack interface
11
+ def call(env)
12
+ # Two experimental options for allowing TT capture based on http params
13
+ #
14
+ # if req.params['nr_capture_deep_tt']
15
+ # NewRelic::Agent::TransactionInfo.get.force_persist = true
16
+ # NewRelic::Agent::TransactionInfo.get.capture_deep_tt = true
17
+ # end
18
+
19
+ # if req.params['nr_capture_tt']
20
+ # NewRelic::Agent::TransactionInfo.get.force_persist = true
21
+ # end
22
+
23
+ result = @app.call(env) # [status, headers, response]
24
+
25
+ if (NewRelic::Agent.browser_timing_header != "") && should_instrument?(result[0], result[1])
26
+ response_string = autoinstrument_source(result[2], result[1])
27
+
28
+ if response_string
29
+ response = Rack::Response.new(response_string, result[0], result[1])
30
+ response.finish
31
+ else
32
+ result
33
+ end
34
+ else
35
+ result
36
+ end
37
+ end
38
+
39
+ def should_instrument?(status, headers)
40
+ status == 200 && headers["Content-Type"] && headers["Content-Type"].include?("text/html") &&
41
+ !headers['Content-Disposition'].to_s.include?('attachment')
42
+ end
43
+
44
+ def autoinstrument_source(response, headers)
45
+ source = nil
46
+ response.each {|fragment| source ? (source << fragment.to_s) : (source = fragment.to_s)}
47
+ return nil unless source
48
+
49
+ body_start = source.index("<body")
50
+ body_close = source.rindex("</body>")
51
+
52
+ if body_start && body_close
53
+ footer = NewRelic::Agent.browser_timing_footer
54
+ header = NewRelic::Agent.browser_timing_header
55
+
56
+ if source.include?('X-UA-Compatible')
57
+ # put at end of header if UA-Compatible meta tag found
58
+ head_pos = source.index("</head>")
59
+ elsif head_open = source.index("<head")
60
+ # put at the beginning of the header
61
+ head_pos = source.index(">", head_open) + 1
62
+ else
63
+ # put the header right above body start
64
+ head_pos = body_start
65
+ end
66
+
67
+ source = source[0..(head_pos-1)] + header + source[head_pos..(body_close-1)] + footer + source[body_close..-1]
68
+
69
+ headers['Content-Length'] = source.length.to_s if headers['Content-Length']
70
+ end
71
+
72
+ source
73
+ end
74
+ end
75
+
76
+ end
@@ -0,0 +1,268 @@
1
+ require 'rack'
2
+ require 'rack/request'
3
+ require 'rack/response'
4
+ require 'rack/file'
5
+ require 'new_relic/metric_parser/metric_parser'
6
+ require 'new_relic/collection_helper'
7
+
8
+ module NewRelic
9
+ module Rack
10
+ class DeveloperMode
11
+
12
+ VIEW_PATH = File.expand_path('../../../../ui/views/', __FILE__)
13
+ HELPER_PATH = File.expand_path('../../../../ui/helpers/', __FILE__)
14
+ require File.join(HELPER_PATH, 'developer_mode_helper.rb')
15
+
16
+
17
+ include NewRelic::DeveloperModeHelper
18
+
19
+ def initialize(app)
20
+ @app = app
21
+ end
22
+
23
+ def call(env)
24
+ return @app.call(env) unless /^\/newrelic/ =~ ::Rack::Request.new(env).path_info
25
+ dup._call(env)
26
+ end
27
+
28
+ protected
29
+
30
+ def _call(env)
31
+ @req = ::Rack::Request.new(env)
32
+ @rendered = false
33
+ case @req.path_info
34
+ when /profile/
35
+ profile
36
+ when /file/
37
+ ::Rack::File.new(VIEW_PATH).call(env)
38
+ when /index/
39
+ index
40
+ when /threads/
41
+ threads
42
+ when /reset/
43
+ reset
44
+ when /show_sample_detail/
45
+ show_sample_data
46
+ when /show_sample_summary/
47
+ show_sample_data
48
+ when /show_sample_sql/
49
+ show_sample_data
50
+ when /explain_sql/
51
+ explain_sql
52
+ when /show_source/
53
+ show_source
54
+ when /^\/newrelic\/?$/
55
+ index
56
+ else
57
+ @app.call(env)
58
+ end
59
+ end
60
+
61
+ private
62
+
63
+ def index
64
+ get_samples
65
+ render(:index)
66
+ end
67
+
68
+ def reset
69
+ NewRelic::Agent.instance.transaction_sampler.reset!
70
+ NewRelic::Agent.instance.sql_sampler.reset!
71
+ ::Rack::Response.new{|r| r.redirect('/newrelic/')}.finish
72
+ end
73
+
74
+ def explain_sql
75
+ get_segment
76
+
77
+ return render(:sample_not_found) unless @sample
78
+
79
+ @sql = @segment[:sql]
80
+ @trace = @segment[:backtrace]
81
+
82
+ if NewRelic::Agent.agent.record_sql == :obfuscated
83
+ @obfuscated_sql = @segment.obfuscated_sql
84
+ end
85
+
86
+ headers, explanations = @segment.explain_sql
87
+ if explanations
88
+ @explanation = explanations
89
+ if !@explanation.blank?
90
+ first_row = @explanation.first
91
+ # Show the standard headers if it looks like a mysql explain plan
92
+ # Otherwise show blank headers
93
+ if first_row.length < NewRelic::MYSQL_EXPLAIN_COLUMNS.length
94
+ @row_headers = nil
95
+ else
96
+ @row_headers = NewRelic::MYSQL_EXPLAIN_COLUMNS
97
+ end
98
+ end
99
+ end
100
+ render(:explain_sql)
101
+ end
102
+
103
+ def profile
104
+ NewRelic::Control.instance.profiling = params['start'] == 'true'
105
+ index
106
+ end
107
+
108
+ def threads
109
+ render(:threads)
110
+ end
111
+
112
+ def render(view, layout=true)
113
+ add_rack_array = true
114
+ if view.is_a? Hash
115
+ layout = false
116
+ if view[:object]
117
+ object = view[:object]
118
+ end
119
+
120
+ if view[:collection]
121
+ return view[:collection].map do |object|
122
+ render({:partial => view[:partial], :object => object})
123
+ end.join(' ')
124
+ end
125
+
126
+ if view[:partial]
127
+ add_rack_array = false
128
+ view = "_#{view[:partial]}"
129
+ end
130
+ end
131
+ binding = Proc.new {}.binding
132
+ if layout
133
+ body = render_with_layout(view) do
134
+ render_without_layout(view, binding)
135
+ end
136
+ else
137
+ body = render_without_layout(view, binding)
138
+ end
139
+ if add_rack_array
140
+ ::Rack::Response.new(body).finish
141
+ else
142
+ body
143
+ end
144
+ end
145
+
146
+ # You have to call this with a block - the contents returned from
147
+ # that block are interpolated into the layout
148
+ def render_with_layout(view)
149
+ body = ERB.new(File.read(File.join(VIEW_PATH, 'layouts/newrelic_default.rhtml')))
150
+ body.result(Proc.new {}.binding)
151
+ end
152
+
153
+ # you have to pass a binding to this (a proc) so that ERB can have
154
+ # access to helper functions and local variables
155
+ def render_without_layout(view, binding)
156
+ ERB.new(File.read(File.join(VIEW_PATH, 'newrelic', view.to_s + '.rhtml')), nil, nil, 'frobnitz').result(binding)
157
+ end
158
+
159
+ def content_tag(tag, contents, opts={})
160
+ opt_values = opts.map {|k, v| "#{k}=\"#{v}\"" }.join(' ')
161
+ "<#{tag} #{opt_values}>#{contents}</#{tag}>"
162
+ end
163
+
164
+ def sample
165
+ @sample || @samples[0]
166
+ end
167
+
168
+ def params
169
+ @req.params
170
+ end
171
+
172
+ def segment
173
+ @segment
174
+ end
175
+
176
+
177
+ # show the selected source file with the highlighted selected line
178
+ def show_source
179
+ @filename = params['file']
180
+ line_number = params['line'].to_i
181
+
182
+ if !File.readable?(@filename)
183
+ @source="<p>Unable to read #{@filename}.</p>"
184
+ return
185
+ end
186
+ begin
187
+ file = File.new(@filename, 'r')
188
+ rescue => e
189
+ @source="<p>Unable to access the source file #{@filename} (#{e.message}).</p>"
190
+ return
191
+ end
192
+ @source = ""
193
+
194
+ @source << "<pre>"
195
+ file.each_line do |line|
196
+ # place an anchor 6 lines above the selected line (if the line # < 6)
197
+ if file.lineno == line_number - 6
198
+ @source << "</pre><pre id = 'selected_line'>"
199
+ @source << line.rstrip
200
+ @source << "</pre><pre>"
201
+
202
+ # highlight the selected line
203
+ elsif file.lineno == line_number
204
+ @source << "</pre><pre class = 'selected_source_line'>"
205
+ @source << line.rstrip
206
+ @source << "</pre><pre>"
207
+ else
208
+ @source << line
209
+ end
210
+ end
211
+ render(:show_source)
212
+ end
213
+
214
+ def show_sample_data
215
+ get_sample
216
+
217
+ return render(:sample_not_found) unless @sample
218
+
219
+ @request_params = @sample.params['request_params'] || {}
220
+ @custom_params = @sample.params['custom_params'] || {}
221
+
222
+ controller_metric = @sample.root_segment.called_segments.first.metric_name
223
+
224
+ metric_parser = NewRelic::MetricParser::MetricParser.for_metric_named controller_metric
225
+ @sample_controller_name = metric_parser.controller_name
226
+ @sample_action_name = metric_parser.action_name
227
+
228
+ @sql_segments = @sample.sql_segments
229
+ if params['d']
230
+ @sql_segments.sort!{|a,b| b.duration <=> a.duration }
231
+ end
232
+
233
+ render(:show_sample)
234
+ end
235
+
236
+ def get_samples
237
+ @samples = NewRelic::Agent.instance.transaction_sampler.samples.select do |sample|
238
+ sample.params[:path] != nil
239
+ end
240
+
241
+ return @samples = @samples.sort{|x,y| y.omit_segments_with('(Rails/Application Code Loading)|(Database/.*/.+ Columns)').duration <=>
242
+ x.omit_segments_with('(Rails/Application Code Loading)|(Database/.*/.+ Columns)').duration} if params['h']
243
+ return @samples = @samples.sort{|x,y| x.params[:uri] <=> y.params[:uri]} if params['u']
244
+ @samples = @samples.reverse
245
+ end
246
+
247
+ def get_sample
248
+ get_samples
249
+ id = params['id']
250
+ sample_id = id.to_i
251
+ @samples.each do |s|
252
+ if s.sample_id == sample_id
253
+ @sample = stripped_sample(s)
254
+ return
255
+ end
256
+ end
257
+ end
258
+
259
+ def get_segment
260
+ get_sample
261
+ return unless @sample
262
+
263
+ segment_id = params['segment'].to_i
264
+ @segment = @sample.find_segment(segment_id)
265
+ end
266
+ end
267
+ end
268
+ end