newrelic_rpm 3.5.2.17 → 3.5.3.24

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of newrelic_rpm might be problematic. Click here for more details.

Files changed (134) hide show
  1. data/.travis.yml +3 -1
  2. data/CHANGELOG +39 -23
  3. data/GUIDELINES_FOR_CONTRIBUTING.md +23 -2
  4. data/Rakefile +32 -0
  5. data/lib/new_relic/agent.rb +1 -0
  6. data/lib/new_relic/agent/agent.rb +45 -6
  7. data/lib/new_relic/agent/browser_monitoring.rb +36 -20
  8. data/lib/new_relic/agent/busy_calculator.rb +12 -4
  9. data/lib/new_relic/agent/configuration/defaults.rb +6 -1
  10. data/lib/new_relic/agent/configuration/environment_source.rb +14 -0
  11. data/lib/new_relic/agent/instrumentation/sinatra.rb +14 -10
  12. data/lib/new_relic/agent/new_relic_service.rb +192 -34
  13. data/lib/new_relic/agent/pipe_channel_manager.rb +1 -2
  14. data/lib/new_relic/agent/pipe_service.rb +5 -1
  15. data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
  16. data/lib/new_relic/agent/sql_sampler.rb +29 -10
  17. data/lib/new_relic/agent/stats_engine/metric_stats.rb +40 -0
  18. data/lib/new_relic/agent/stats_engine/samplers.rb +1 -2
  19. data/lib/new_relic/agent/thread.rb +27 -0
  20. data/lib/new_relic/agent/thread_profiler.rb +295 -0
  21. data/lib/new_relic/agent/worker_loop.rb +29 -15
  22. data/lib/new_relic/control/frameworks/rails.rb +4 -4
  23. data/lib/new_relic/control/frameworks/rails3.rb +1 -1
  24. data/lib/new_relic/helper.rb +3 -0
  25. data/lib/new_relic/metric_data.rb +10 -2
  26. data/lib/new_relic/noticed_error.rb +5 -0
  27. data/lib/new_relic/transaction_sample.rb +23 -13
  28. data/lib/new_relic/transaction_sample/segment.rb +13 -15
  29. data/lib/new_relic/version.rb +1 -1
  30. data/lib/tasks/tests.rake +5 -11
  31. data/test/multiverse/.gitignore +10 -0
  32. data/test/multiverse/README.md +90 -0
  33. data/test/multiverse/Rakefile +17 -0
  34. data/test/multiverse/lib/multiverse/color.rb +13 -0
  35. data/test/multiverse/lib/multiverse/envfile.rb +66 -0
  36. data/test/multiverse/lib/multiverse/environment.rb +16 -0
  37. data/test/multiverse/lib/multiverse/output_collector.rb +29 -0
  38. data/test/multiverse/lib/multiverse/runner.rb +44 -0
  39. data/test/multiverse/lib/multiverse/suite.rb +162 -0
  40. data/test/multiverse/script/run_one +3 -0
  41. data/test/multiverse/script/runner +9 -0
  42. data/test/multiverse/suites/active_record/Envfile +13 -0
  43. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +94 -0
  44. data/test/multiverse/suites/active_record/config/newrelic.yml +22 -0
  45. data/test/multiverse/suites/active_record/encoding_test.rb +26 -0
  46. data/test/multiverse/suites/agent_only/Envfile +3 -0
  47. data/test/multiverse/suites/agent_only/config/newrelic.yml +22 -0
  48. data/test/multiverse/suites/agent_only/http_response_code_test.rb +53 -0
  49. data/test/multiverse/suites/agent_only/marshaling_test.rb +109 -0
  50. data/test/multiverse/suites/agent_only/method_visibility_test.rb +98 -0
  51. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +33 -0
  52. data/test/multiverse/suites/agent_only/service_timeout_test.rb +29 -0
  53. data/test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb +30 -0
  54. data/test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb +32 -0
  55. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +80 -0
  56. data/test/multiverse/suites/datamapper/Envfile +8 -0
  57. data/test/multiverse/suites/datamapper/config/newrelic.yml +22 -0
  58. data/test/multiverse/suites/datamapper/encoding_test.rb +36 -0
  59. data/test/multiverse/suites/monitor_mode_false/Envfile +2 -0
  60. data/test/multiverse/suites/monitor_mode_false/config/newrelic.yml +25 -0
  61. data/test/multiverse/suites/monitor_mode_false/no_dns_resolv.rb +29 -0
  62. data/test/multiverse/suites/no_load/Envfile +2 -0
  63. data/test/multiverse/suites/no_load/config/newrelic.yml +23 -0
  64. data/test/multiverse/suites/no_load/start_up_test.rb +14 -0
  65. data/test/multiverse/suites/rails_3_error_tracing/Envfile +15 -0
  66. data/test/multiverse/suites/rails_3_error_tracing/config/newrelic.yml +165 -0
  67. data/test/multiverse/suites/rails_3_error_tracing/error_tracing_test.rb +236 -0
  68. data/test/multiverse/suites/rails_3_gc/Envfile +8 -0
  69. data/test/multiverse/suites/rails_3_gc/config/newrelic.yml +167 -0
  70. data/test/multiverse/suites/rails_3_gc/instrumentation_test.rb +92 -0
  71. data/test/multiverse/suites/rails_3_queue_time/Envfile +15 -0
  72. data/test/multiverse/suites/rails_3_queue_time/config/newrelic.yml +165 -0
  73. data/test/multiverse/suites/rails_3_queue_time/queue_time_test.rb +75 -0
  74. data/test/multiverse/suites/rails_3_views/.gitignore +3 -0
  75. data/test/multiverse/suites/rails_3_views/Envfile +16 -0
  76. data/test/multiverse/suites/rails_3_views/app/views/foos/_foo.html.haml +1 -0
  77. data/test/multiverse/suites/rails_3_views/app/views/test/_a_partial.html.erb +1 -0
  78. data/test/multiverse/suites/rails_3_views/app/views/test/_mid_partial.html.erb +1 -0
  79. data/test/multiverse/suites/rails_3_views/app/views/test/_top_partial.html.erb +3 -0
  80. data/test/multiverse/suites/rails_3_views/app/views/test/deep_partial.html.erb +3 -0
  81. data/test/multiverse/suites/rails_3_views/app/views/test/haml_view.html.haml +6 -0
  82. data/test/multiverse/suites/rails_3_views/app/views/test/index.html.erb +4 -0
  83. data/test/multiverse/suites/rails_3_views/config/newrelic.yml +164 -0
  84. data/test/multiverse/suites/rails_3_views/view_instrumentation_test.rb +245 -0
  85. data/test/multiverse/suites/resque/Envfile +21 -0
  86. data/test/multiverse/suites/resque/config/newrelic.yml +22 -0
  87. data/test/multiverse/suites/resque/dump.rdb +0 -0
  88. data/test/multiverse/suites/resque/instrumentation_test.rb +73 -0
  89. data/test/multiverse/suites/rum_auto_instrumentation/Envfile +4 -0
  90. data/test/multiverse/suites/rum_auto_instrumentation/config/newrelic.yml +24 -0
  91. data/test/multiverse/suites/rum_auto_instrumentation/problem_response.html +422 -0
  92. data/test/multiverse/suites/rum_auto_instrumentation/responses/worst_case_small.html +5000 -0
  93. data/test/multiverse/suites/rum_auto_instrumentation/sanity_test.rb +115 -0
  94. data/test/multiverse/suites/sinatra/Envfile +13 -0
  95. data/test/multiverse/suites/sinatra/config/newrelic.yml +24 -0
  96. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +76 -0
  97. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +46 -0
  98. data/test/multiverse/test/multiverse_test.rb +55 -0
  99. data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
  100. data/test/multiverse/test/suite_examples/one/a/a_test.rb +11 -0
  101. data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +24 -0
  102. data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
  103. data/test/multiverse/test/suite_examples/one/b/b_test.rb +11 -0
  104. data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +24 -0
  105. data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
  106. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +6 -0
  107. data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
  108. data/test/multiverse/test/suite_examples/three/b/win_test.rb +6 -0
  109. data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
  110. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +6 -0
  111. data/test/new_relic/agent/agent_test.rb +54 -2
  112. data/test/new_relic/agent/agent_test_controller.rb +1 -1
  113. data/test/new_relic/agent/agent_test_controller_test.rb +35 -5
  114. data/test/new_relic/agent/browser_monitoring_test.rb +8 -8
  115. data/test/new_relic/agent/configuration/environment_source_test.rb +16 -0
  116. data/test/new_relic/agent/method_tracer_test.rb +6 -6
  117. data/test/new_relic/agent/new_relic_service_test.rb +137 -20
  118. data/test/new_relic/agent/sql_sampler_test.rb +26 -0
  119. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +1 -1
  120. data/test/new_relic/agent/stats_engine_test.rb +1 -0
  121. data/test/new_relic/agent/thread_profiler_test.rb +536 -0
  122. data/test/new_relic/agent/thread_test.rb +76 -0
  123. data/test/new_relic/agent/threaded_test.rb +65 -0
  124. data/test/new_relic/agent/transaction_sampler_test.rb +16 -13
  125. data/test/new_relic/agent/worker_loop_test.rb +20 -0
  126. data/test/new_relic/fake_collector.rb +103 -31
  127. data/test/new_relic/fake_service.rb +7 -1
  128. data/test/new_relic/metric_data_test.rb +45 -16
  129. data/test/new_relic/noticed_error_test.rb +14 -0
  130. data/test/new_relic/transaction_sample/segment_test.rb +23 -4
  131. data/test/new_relic/transaction_sample_test.rb +39 -0
  132. data/ui/views/layouts/newrelic_default.rhtml +1 -0
  133. data/ui/views/newrelic/threads.rhtml +2 -10
  134. metadata +88 -2
@@ -0,0 +1,8 @@
1
+ suite_condition("GC instrumentation only works with REE or 1.9.x") do
2
+ (defined?(RUBY_DESCRIPTION) && RUBY_DESCRIPTION =~ /Enterprise/) ||
3
+ RUBY_VERSION >= '1.9.2'
4
+ end
5
+
6
+ gemfile <<-RB
7
+ gem 'rails', '~>3.2.0'
8
+ RB
@@ -0,0 +1,167 @@
1
+ #
2
+ # This file configures the NewRelic RPM Agent, NewRelic RPM monitors Rails
3
+ # applications with deep visibility and low overhead. For more information,
4
+ # visit www.newrelic.com.
5
+ #
6
+ #
7
+ #
8
+ # here are the settings that are common to all environments
9
+ common: &default_settings
10
+
11
+ # ============================== LICENSE KEY ===============================
12
+ # You must specify the licence key associated with your New Relic account.
13
+ # This key binds your Agent's data to your account in the New Relic RPM service.
14
+
15
+ #license_key: 'bootstrap_newrelic_admin_license_key_000'
16
+ #host: localhost
17
+ #port: 3000
18
+
19
+ license_key: 'bd0e1d52adade840f7ca727d29a86249e89a6f1c'
20
+ host: localhost
21
+
22
+ # Agent Enabled
23
+ # Use this setting to force the agent to run or not run.
24
+ # Default is 'auto' which means the agent will install and run only if a
25
+ # valid dispatcher such as Mongrel is running. This prevents it from running
26
+ # with Rake or the console. Set to false to completely turn the agent off
27
+ # regardless of the other settings. Valid values are true, false and auto.
28
+ # agent_enabled: auto
29
+
30
+ # Application Name
31
+ # Set this to be the name of your application as you'd like it show up in RPM.
32
+ # RPM will then auto-map instances of your application into a RPM "application"
33
+ # on your home dashboard page. This setting does not prevent you from manually
34
+ # defining applications.
35
+ app_name: Rails 3 view test ap
36
+
37
+ # When 'enabled' is turned on, the agent collects performance data by inserting lightweight
38
+ # tracers on key methods inside the rails framework and asynchronously aggregating
39
+ # and reporting this performance data to the NewRelic RPM service at newrelic.com.
40
+ enabled: false
41
+
42
+ # The newrelic agent generates its own log file to keep its logging information
43
+ # separate from that of your application. Specify its log level here.
44
+ log_level: debug
45
+
46
+ # The newrelic agent communicates with the RPM service via http by default.
47
+ # If you want to communicate via https to increase security, then turn on
48
+ # SSL by setting this value to true. Note, this will result in increased
49
+ # CPU overhead to perform the encryption involved in SSL communication, but this
50
+ # work is done asynchronously to the threads that process your application code, so
51
+ # it should not impact response times.
52
+ ssl: false
53
+
54
+ # Set your application's Apdex threshold value with the 'apdex_t' setting, in seconds. The
55
+ # apdex_t value determines the buckets used to compute your overall Apdex score. Requests
56
+ # that take less than apdex_t seconds to process will be classified as Satisfying transactions;
57
+ # more than apdex_t seconds as Tolerating transactions; and more than four times the apdex_t
58
+ # value as Frustrating transactions. For more
59
+ # about the Apdex standard, see http://support.newrelic.com/faqs/general/apdex
60
+ apdex_t: 1.0
61
+
62
+
63
+ # Proxy settings for connecting to the RPM server.
64
+ #
65
+ # If a proxy is used, the host setting is required. Other settings are optional. Default
66
+ # port is 8080.
67
+ #
68
+ # proxy_host: hostname
69
+ # proxy_port: 8080
70
+ # proxy_user:
71
+ # proxy_pass:
72
+
73
+
74
+ # Tells transaction tracer and error collector (when enabled) whether or not to capture HTTP params.
75
+ # When true, the RoR filter_parameter_logging mechanism is used so that sensitive parameters are not recorded
76
+ capture_params: false
77
+
78
+
79
+ # Transaction tracer captures deep information about slow
80
+ # transactions and sends this to the RPM service once a minute. Included in the
81
+ # transaction is the exact call sequence of the transactions including any SQL statements
82
+ # issued.
83
+ transaction_tracer:
84
+
85
+ # Transaction tracer is enabled by default. Set this to false to turn it off. This feature
86
+ # is only available at the Silver and above product levels.
87
+ enabled: true
88
+
89
+ # Threshold in seconds for when to collect a transaction trace. When the response time of
90
+ # a controller action exceeds this threshold, a transaction trace will be recorded and sent
91
+ # to RPM. Valid values are any float value, or (default) "apdex_f", which will use the
92
+ # threshold for an dissatisfying Apdex controller action - four times the Apdex T value.
93
+ transaction_threshold: apdex_f
94
+
95
+ # When transaction tracer is on, SQL statements can optionally be recorded. The recorder
96
+ # has three modes, "off" which sends no SQL, "raw" which sends the SQL statement in its
97
+ # original form, and "obfuscated", which strips out numeric and string literals
98
+ record_sql: obfuscated
99
+
100
+ # Threshold in seconds for when to collect stack trace for a SQL call. In other words,
101
+ # when SQL statements exceed this threshold, then capture and send to RPM the current
102
+ # stack trace. This is helpful for pinpointing where long SQL calls originate from
103
+ stack_trace_threshold: 0.500
104
+
105
+ # Error collector captures information about uncaught exceptions and sends them to RPM for
106
+ # viewing
107
+ error_collector:
108
+
109
+ # Error collector is enabled by default. Set this to false to turn it off. This feature
110
+ # is only available at the Silver and above product levels
111
+ enabled: true
112
+
113
+ # Tells error collector whether or not to capture a source snippet around the place of the
114
+ # error when errors are View related.
115
+ capture_source: true
116
+
117
+ # To stop specific errors from reporting to RPM, set this property to comma separated
118
+ # values
119
+ #
120
+ #ignore_errors: ActionController::RoutingError, ...
121
+
122
+ # (Advanced) Uncomment this to ensure the cpu and memory samplers won't run. Useful when you
123
+ # are using the agent to monitor an external resource
124
+ # disable_samplers: true
125
+
126
+ # override default settings based on your application's environment
127
+
128
+ # NOTE if your application has other named environments, you should
129
+ # provide newrelic conifguration settings for these enviromnents here.
130
+
131
+ disable_memory_profiling: false
132
+
133
+ development:
134
+ <<: *default_settings
135
+ # turn off communication to RPM service in development mode.
136
+ # NOTE: for initial evaluation purposes, you may want to temporarily turn
137
+ # the agent on in development mode.
138
+ enabled: true
139
+
140
+ # When running in Developer Mode, the New Relic Agent will present
141
+ # performance information on the last 100 transactions you have
142
+ # executed since starting the mongrel. to view this data, go to
143
+ # http://localhost:3000/newrelic
144
+ developer: true
145
+
146
+ test:
147
+ <<: *default_settings
148
+ # it almost never makes sense to turn on the agent when running unit, functional or
149
+ # integration tests or the like.
150
+ enabled: true
151
+ log_level: debug
152
+ developer: true
153
+
154
+ # Turn on the agent in production for 24x7 monitoring. NewRelic testing shows
155
+ # an average performance impact of < 5 ms per transaction, you you can leave this on
156
+ # all the time without incurring any user-visible performance degredation.
157
+ production:
158
+ <<: *default_settings
159
+ enabled: true
160
+
161
+ # many applications have a staging environment which behaves identically to production.
162
+ # Support for that environment is provided here. By default, the staging environment has
163
+ # the agent turned on.
164
+ staging:
165
+ <<: *default_settings
166
+ enabled: true
167
+ app_name: My Application (Staging)
@@ -0,0 +1,92 @@
1
+ require "action_controller/railtie"
2
+ require "rails/test_unit/railtie"
3
+ require 'rails/test_help'
4
+ require 'test/unit'
5
+
6
+ # BEGIN RAILS APP
7
+
8
+ class MyApp < Rails::Application
9
+ config.active_support.deprecation = :log
10
+ config.secret_token = '!*#$#' * 31
11
+ end
12
+ MyApp.initialize!
13
+
14
+ MyApp.routes.draw do
15
+ match '/:controller(/:action(/:id))'
16
+ end
17
+
18
+ class ApplicationController < ActionController::Base; end
19
+
20
+ class TestController < ApplicationController
21
+ include Rails.application.routes.url_helpers
22
+ def gc_action
23
+ GC.disable
24
+
25
+ long_string = "01234567" * 100_000
26
+ long_string = nil
27
+ another_long_string = "01234567" * 100_000
28
+
29
+ start = Time.now
30
+ GC.enable
31
+ GC.start
32
+ stop = Time.now
33
+
34
+ @duration = stop.to_f - start.to_f
35
+
36
+ render :text => @duration.to_s
37
+ ensure
38
+ GC.enable
39
+ end
40
+ end
41
+
42
+ # END RAILS APP
43
+
44
+ class TestControllerTest < ActionController::TestCase
45
+ tests TestController
46
+ def setup
47
+ enable_gc_stats
48
+
49
+ @controller = TestController.new
50
+ NewRelic::Agent.instance.stats_engine.reset_stats
51
+ NewRelic::Agent.instance.transaction_sampler \
52
+ .instance_variable_set(:@samples, [])
53
+ NewRelic::Agent.manual_start
54
+ end
55
+
56
+ def teardown
57
+ NewRelic::Agent.shutdown
58
+ end
59
+
60
+ def enable_gc_stats
61
+ if RUBY_DESCRIPTION =~ /Enterprise/
62
+ GC.enable_stats
63
+ elsif RUBY_VERSION >= '1.9.2'
64
+ GC::Profiler.enable
65
+ end
66
+ end
67
+ end
68
+
69
+ class GCRailsInstrumentationTest < TestControllerTest
70
+ def test_records_accurate_time_for_gc_activity
71
+ get :gc_action
72
+
73
+ assert_in_delta(assigns[:duration],
74
+ NewRelic::Agent.agent.stats_engine \
75
+ .get_stats('GC/cumulative') \
76
+ .total_call_time, 0.1,
77
+ 'problem with unscoped GC metric')
78
+ assert_in_delta(assigns[:duration],
79
+ NewRelic::Agent.agent.stats_engine \
80
+ .get_stats('GC/cumulative', true, false,
81
+ 'Controller/test/gc_action') \
82
+ .total_call_time, 0.1,
83
+ 'problem with scoped GC metric')
84
+ end
85
+
86
+ def test_records_transaction_param_for_gc_activity
87
+ get :gc_action
88
+
89
+ trace = NewRelic::Agent.instance.transaction_sampler.last_sample
90
+ assert_in_delta(assigns[:duration], trace.params[:custom_params][:gc_time], 0.1)
91
+ end
92
+ end
@@ -0,0 +1,15 @@
1
+ suite_condition("Rails 3 does not support 1.8.6") do
2
+ RUBY_VERSION != '1.8.6'
3
+ end
4
+
5
+ gemfile <<-RB
6
+ gem 'rails', '~>3.2.0'
7
+ RB
8
+
9
+ gemfile <<-RB
10
+ gem 'rails', '~>3.1.0'
11
+ RB
12
+
13
+ gemfile <<-RB
14
+ gem 'rails', '~>3.0.0'
15
+ RB
@@ -0,0 +1,165 @@
1
+ #
2
+ # This file configures the NewRelic RPM Agent, NewRelic RPM monitors Rails
3
+ # applications with deep visibility and low overhead. For more information,
4
+ # visit www.newrelic.com.
5
+ #
6
+ #
7
+ #
8
+ # here are the settings that are common to all environments
9
+ common: &default_settings
10
+
11
+ # ============================== LICENSE KEY ===============================
12
+ # You must specify the licence key associated with your New Relic account.
13
+ # This key binds your Agent's data to your account in the New Relic RPM service.
14
+
15
+ #license_key: 'bootstrap_newrelic_admin_license_key_000'
16
+ #host: localhost
17
+ #port: 3000
18
+
19
+ license_key: 'bd0e1d52adade840f7ca727d29a86249e89a6f1c'
20
+ host: localhost
21
+
22
+ # Agent Enabled
23
+ # Use this setting to force the agent to run or not run.
24
+ # Default is 'auto' which means the agent will install and run only if a
25
+ # valid dispatcher such as Mongrel is running. This prevents it from running
26
+ # with Rake or the console. Set to false to completely turn the agent off
27
+ # regardless of the other settings. Valid values are true, false and auto.
28
+ # agent_enabled: auto
29
+
30
+ # Application Name
31
+ # Set this to be the name of your application as you'd like it show up in RPM.
32
+ # RPM will then auto-map instances of your application into a RPM "application"
33
+ # on your home dashboard page. This setting does not prevent you from manually
34
+ # defining applications.
35
+ app_name: Rails 3 view test ap
36
+
37
+ # When 'enabled' is turned on, the agent collects performance data by inserting lightweight
38
+ # tracers on key methods inside the rails framework and asynchronously aggregating
39
+ # and reporting this performance data to the NewRelic RPM service at newrelic.com.
40
+ enabled: false
41
+
42
+ # The newrelic agent generates its own log file to keep its logging information
43
+ # separate from that of your application. Specify its log level here.
44
+ log_level: debug
45
+
46
+ # The newrelic agent communicates with the RPM service via http by default.
47
+ # If you want to communicate via https to increase security, then turn on
48
+ # SSL by setting this value to true. Note, this will result in increased
49
+ # CPU overhead to perform the encryption involved in SSL communication, but this
50
+ # work is done asynchronously to the threads that process your application code, so
51
+ # it should not impact response times.
52
+ ssl: false
53
+
54
+ # Set your application's Apdex threshold value with the 'apdex_t' setting, in seconds. The
55
+ # apdex_t value determines the buckets used to compute your overall Apdex score. Requests
56
+ # that take less than apdex_t seconds to process will be classified as Satisfying transactions;
57
+ # more than apdex_t seconds as Tolerating transactions; and more than four times the apdex_t
58
+ # value as Frustrating transactions. For more
59
+ # about the Apdex standard, see http://support.newrelic.com/faqs/general/apdex
60
+ apdex_t: 1.0
61
+
62
+
63
+ # Proxy settings for connecting to the RPM server.
64
+ #
65
+ # If a proxy is used, the host setting is required. Other settings are optional. Default
66
+ # port is 8080.
67
+ #
68
+ # proxy_host: hostname
69
+ # proxy_port: 8080
70
+ # proxy_user:
71
+ # proxy_pass:
72
+
73
+
74
+ # Tells transaction tracer and error collector (when enabled) whether or not to capture HTTP params.
75
+ # When true, the RoR filter_parameter_logging mechanism is used so that sensitive parameters are not recorded
76
+ capture_params: true
77
+
78
+
79
+ # Transaction tracer captures deep information about slow
80
+ # transactions and sends this to the RPM service once a minute. Included in the
81
+ # transaction is the exact call sequence of the transactions including any SQL statements
82
+ # issued.
83
+ transaction_tracer:
84
+
85
+ # Transaction tracer is enabled by default. Set this to false to turn it off. This feature
86
+ # is only available at the Silver and above product levels.
87
+ enabled: true
88
+
89
+ # Threshold in seconds for when to collect a transaction trace. When the response time of
90
+ # a controller action exceeds this threshold, a transaction trace will be recorded and sent
91
+ # to RPM. Valid values are any float value, or (default) "apdex_f", which will use the
92
+ # threshold for an dissatisfying Apdex controller action - four times the Apdex T value.
93
+ transaction_threshold: apdex_f
94
+
95
+ # When transaction tracer is on, SQL statements can optionally be recorded. The recorder
96
+ # has three modes, "off" which sends no SQL, "raw" which sends the SQL statement in its
97
+ # original form, and "obfuscated", which strips out numeric and string literals
98
+ record_sql: obfuscated
99
+
100
+ # Threshold in seconds for when to collect stack trace for a SQL call. In other words,
101
+ # when SQL statements exceed this threshold, then capture and send to RPM the current
102
+ # stack trace. This is helpful for pinpointing where long SQL calls originate from
103
+ stack_trace_threshold: 0.500
104
+
105
+ # Error collector captures information about uncaught exceptions and sends them to RPM for
106
+ # viewing
107
+ error_collector:
108
+
109
+ # Error collector is enabled by default. Set this to false to turn it off. This feature
110
+ # is only available at the Silver and above product levels
111
+ enabled: true
112
+
113
+ # Tells error collector whether or not to capture a source snippet around the place of the
114
+ # error when errors are View related.
115
+ capture_source: true
116
+
117
+ # To stop specific errors from reporting to RPM, set this property to comma separated
118
+ # values
119
+ #
120
+ #ignore_errors: ActionController::RoutingError, ...
121
+ ignore_errors: IgnoredError
122
+
123
+ # (Advanced) Uncomment this to ensure the cpu and memory samplers won't run. Useful when you
124
+ # are using the agent to monitor an external resource
125
+ # disable_samplers: true
126
+
127
+ # override default settings based on your application's environment
128
+
129
+ # NOTE if your application has other named environments, you should
130
+ # provide newrelic conifguration settings for these enviromnents here.
131
+
132
+ development:
133
+ <<: *default_settings
134
+ # turn off communication to RPM service in development mode.
135
+ # NOTE: for initial evaluation purposes, you may want to temporarily turn
136
+ # the agent on in development mode.
137
+ enabled: true
138
+
139
+ # When running in Developer Mode, the New Relic Agent will present
140
+ # performance information on the last 100 transactions you have
141
+ # executed since starting the mongrel. to view this data, go to
142
+ # http://localhost:3000/newrelic
143
+ developer: true
144
+
145
+ test:
146
+ <<: *default_settings
147
+ # it almost never makes sense to turn on the agent when running unit, functional or
148
+ # integration tests or the like.
149
+ enabled: true
150
+ log_level: debug
151
+
152
+ # Turn on the agent in production for 24x7 monitoring. NewRelic testing shows
153
+ # an average performance impact of < 5 ms per transaction, you you can leave this on
154
+ # all the time without incurring any user-visible performance degredation.
155
+ production:
156
+ <<: *default_settings
157
+ enabled: true
158
+
159
+ # many applications have a staging environment which behaves identically to production.
160
+ # Support for that environment is provided here. By default, the staging environment has
161
+ # the agent turned on.
162
+ staging:
163
+ <<: *default_settings
164
+ enabled: true
165
+ app_name: My Application (Staging)