newrelic_rpm 7.2.0 → 8.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +1936 -0
  4. data/CHANGELOG.md +182 -9
  5. data/CONTRIBUTING.md +14 -2
  6. data/Guardfile +8 -8
  7. data/README.md +5 -1
  8. data/Rakefile +5 -7
  9. data/bin/mongrel_rpm +8 -9
  10. data/bin/newrelic +1 -1
  11. data/bin/nrdebug +14 -14
  12. data/init.rb +0 -2
  13. data/lefthook.yml +9 -0
  14. data/lib/new_relic/agent/adaptive_sampler.rb +9 -5
  15. data/lib/new_relic/agent/agent.rb +44 -46
  16. data/lib/new_relic/agent/agent_logger.rb +8 -9
  17. data/lib/new_relic/agent/attribute_filter.rb +31 -31
  18. data/lib/new_relic/agent/attributes.rb +2 -2
  19. data/lib/new_relic/agent/autostart.rb +6 -7
  20. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  21. data/lib/new_relic/agent/commands/agent_command_router.rb +6 -5
  22. data/lib/new_relic/agent/commands/thread_profiler_session.rb +7 -6
  23. data/lib/new_relic/agent/configuration/default_source.rb +352 -336
  24. data/lib/new_relic/agent/configuration/dotted_hash.rb +3 -3
  25. data/lib/new_relic/agent/configuration/environment_source.rb +3 -4
  26. data/lib/new_relic/agent/configuration/event_harvest_config.rb +30 -16
  27. data/lib/new_relic/agent/configuration/high_security_source.rb +7 -7
  28. data/lib/new_relic/agent/configuration/manager.rb +57 -58
  29. data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
  30. data/lib/new_relic/agent/configuration/security_policy_source.rb +73 -73
  31. data/lib/new_relic/agent/configuration/server_source.rb +12 -11
  32. data/lib/new_relic/agent/configuration/yaml_source.rb +26 -5
  33. data/lib/new_relic/agent/connect/request_builder.rb +13 -16
  34. data/lib/new_relic/agent/connect/response_handler.rb +0 -3
  35. data/lib/new_relic/agent/custom_event_aggregator.rb +9 -9
  36. data/lib/new_relic/agent/database/explain_plan_helpers.rb +3 -4
  37. data/lib/new_relic/agent/database/obfuscation_helpers.rb +12 -12
  38. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +2 -2
  39. data/lib/new_relic/agent/database.rb +25 -26
  40. data/lib/new_relic/agent/datastores/metric_helper.rb +10 -10
  41. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +2 -3
  42. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +3 -5
  43. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +1 -2
  44. data/lib/new_relic/agent/datastores/mongo.rb +5 -10
  45. data/lib/new_relic/agent/datastores/redis.rb +2 -4
  46. data/lib/new_relic/agent/datastores.rb +7 -9
  47. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +9 -9
  48. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +21 -16
  49. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -12
  50. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +42 -43
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +3 -3
  52. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +41 -43
  53. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +25 -25
  54. data/lib/new_relic/agent/distributed_tracing.rb +17 -18
  55. data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
  56. data/lib/new_relic/agent/error_collector.rb +17 -17
  57. data/lib/new_relic/agent/error_event_aggregator.rb +1 -1
  58. data/lib/new_relic/agent/error_filter.rb +16 -10
  59. data/lib/new_relic/agent/error_trace_aggregator.rb +1 -1
  60. data/lib/new_relic/agent/event_aggregator.rb +1 -1
  61. data/lib/new_relic/agent/event_buffer.rb +6 -7
  62. data/lib/new_relic/agent/event_listener.rb +0 -1
  63. data/lib/new_relic/agent/event_loop.rb +14 -14
  64. data/lib/new_relic/agent/external.rb +1 -34
  65. data/lib/new_relic/agent/guid_generator.rb +1 -3
  66. data/lib/new_relic/agent/harvester.rb +3 -4
  67. data/lib/new_relic/agent/heap.rb +1 -3
  68. data/lib/new_relic/agent/hostname.rb +3 -3
  69. data/lib/new_relic/agent/http_clients/abstract.rb +7 -9
  70. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +1 -5
  71. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +4 -4
  72. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +3 -3
  73. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -2
  74. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +8 -3
  75. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +2 -3
  76. data/lib/new_relic/agent/http_clients/uri_util.rb +0 -1
  77. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +2 -3
  78. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +10 -11
  79. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +5 -7
  80. data/lib/new_relic/agent/instrumentation/active_job.rb +4 -3
  81. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  82. data/lib/new_relic/agent/instrumentation/active_record.rb +20 -18
  83. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +36 -42
  84. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +28 -25
  85. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +3 -3
  86. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +5 -6
  87. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +8 -9
  88. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
  89. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +8 -9
  90. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +42 -42
  91. data/lib/new_relic/agent/instrumentation/curb/chain.rb +19 -20
  92. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +34 -38
  93. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +9 -10
  94. data/lib/new_relic/agent/instrumentation/data_mapper.rb +10 -10
  95. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +5 -7
  96. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +5 -9
  97. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +4 -4
  98. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -2
  99. data/lib/new_relic/agent/instrumentation/excon.rb +3 -23
  100. data/lib/new_relic/agent/instrumentation/grape/chain.rb +1 -2
  101. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +6 -7
  102. data/lib/new_relic/agent/instrumentation/grape.rb +2 -3
  103. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +2 -3
  104. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +0 -1
  105. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +0 -2
  106. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +2 -2
  107. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +6 -6
  108. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +1 -1
  109. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +2 -3
  110. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  111. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +58 -0
  112. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  113. data/lib/new_relic/agent/instrumentation/logger.rb +25 -0
  114. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +7 -2
  115. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +5 -1
  116. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +9 -2
  117. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +9 -10
  118. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +4 -5
  119. data/lib/new_relic/agent/instrumentation/mongo.rb +3 -141
  120. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +4 -4
  121. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +3 -4
  122. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -5
  123. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +4 -4
  124. data/lib/new_relic/agent/instrumentation/net_http.rb +1 -1
  125. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +2 -3
  126. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +23 -19
  127. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -2
  128. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +2 -2
  129. data/lib/new_relic/agent/instrumentation/padrino.rb +2 -5
  130. data/lib/new_relic/agent/instrumentation/queue_time.rb +8 -8
  131. data/lib/new_relic/agent/instrumentation/rack/chain.rb +5 -5
  132. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +0 -1
  133. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +4 -5
  134. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +0 -1
  135. data/lib/new_relic/agent/instrumentation/rack.rb +1 -1
  136. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +11 -47
  137. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +2 -2
  138. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +0 -1
  139. data/lib/new_relic/agent/instrumentation/rake/chain.rb +0 -5
  140. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +6 -6
  141. data/lib/new_relic/agent/instrumentation/rake.rb +1 -1
  142. data/lib/new_relic/agent/instrumentation/redis/chain.rb +6 -6
  143. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -2
  144. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +1 -1
  145. data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
  146. data/lib/new_relic/agent/instrumentation/resque/chain.rb +2 -3
  147. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  148. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -4
  149. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +1 -2
  150. data/lib/new_relic/agent/instrumentation/resque.rb +7 -7
  151. data/lib/new_relic/agent/instrumentation/sequel.rb +7 -9
  152. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
  153. data/lib/new_relic/agent/instrumentation/sidekiq.rb +7 -1
  154. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +0 -1
  155. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +4 -3
  156. data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
  157. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
  158. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +40 -0
  159. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
  160. data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
  161. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +4 -4
  162. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +3 -5
  163. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +1 -1
  164. data/lib/new_relic/agent/internal_agent_error.rb +1 -1
  165. data/lib/new_relic/agent/javascript_instrumentor.rb +30 -30
  166. data/lib/new_relic/agent/logging.rb +11 -8
  167. data/lib/new_relic/agent/memory_logger.rb +1 -1
  168. data/lib/new_relic/agent/messaging.rb +46 -61
  169. data/lib/new_relic/agent/method_tracer.rb +139 -143
  170. data/lib/new_relic/agent/method_tracer_helpers.rb +2 -2
  171. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +21 -13
  172. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +2 -2
  173. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +0 -1
  174. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +4 -7
  175. data/lib/new_relic/agent/monitors.rb +1 -2
  176. data/lib/new_relic/agent/new_relic_service/encoders.rb +4 -4
  177. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -1
  178. data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -1
  179. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +4 -3
  180. data/lib/new_relic/agent/new_relic_service.rb +34 -41
  181. data/lib/new_relic/agent/noticible_error.rb +0 -2
  182. data/lib/new_relic/agent/null_logger.rb +6 -2
  183. data/lib/new_relic/agent/obfuscator.rb +6 -8
  184. data/lib/new_relic/agent/parameter_filtering.rb +3 -5
  185. data/lib/new_relic/agent/payload_metric_mapping.rb +8 -9
  186. data/lib/new_relic/agent/pipe_channel_manager.rb +15 -12
  187. data/lib/new_relic/agent/pipe_service.rb +2 -2
  188. data/lib/new_relic/agent/priority_sampled_buffer.rb +4 -7
  189. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +9 -9
  190. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +12 -12
  191. data/lib/new_relic/agent/rules_engine.rb +2 -2
  192. data/lib/new_relic/agent/sampler.rb +2 -3
  193. data/lib/new_relic/agent/sampler_collection.rb +2 -3
  194. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  195. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +10 -7
  196. data/lib/new_relic/agent/samplers/memory_sampler.rb +4 -3
  197. data/lib/new_relic/agent/samplers/vm_sampler.rb +18 -18
  198. data/lib/new_relic/agent/span_event_aggregator.rb +10 -10
  199. data/lib/new_relic/agent/span_event_primitive.rb +39 -39
  200. data/lib/new_relic/agent/sql_sampler.rb +9 -9
  201. data/lib/new_relic/agent/stats.rb +16 -16
  202. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +7 -9
  203. data/lib/new_relic/agent/stats_engine/stats_hash.rb +8 -9
  204. data/lib/new_relic/agent/stats_engine.rb +7 -7
  205. data/lib/new_relic/agent/synthetics_event_aggregator.rb +0 -1
  206. data/lib/new_relic/agent/system_info.rb +22 -20
  207. data/lib/new_relic/agent/threading/agent_thread.rb +4 -5
  208. data/lib/new_relic/agent/threading/backtrace_node.rb +6 -9
  209. data/lib/new_relic/agent/threading/backtrace_service.rb +12 -13
  210. data/lib/new_relic/agent/threading/thread_profile.rb +16 -19
  211. data/lib/new_relic/agent/tracer.rb +43 -71
  212. data/lib/new_relic/agent/transaction/abstract_segment.rb +9 -9
  213. data/lib/new_relic/agent/transaction/datastore_segment.rb +7 -6
  214. data/lib/new_relic/agent/transaction/distributed_tracer.rb +8 -9
  215. data/lib/new_relic/agent/transaction/distributed_tracing.rb +21 -22
  216. data/lib/new_relic/agent/transaction/external_request_segment.rb +6 -5
  217. data/lib/new_relic/agent/transaction/message_broker_segment.rb +24 -30
  218. data/lib/new_relic/agent/transaction/request_attributes.rb +7 -7
  219. data/lib/new_relic/agent/transaction/segment.rb +6 -3
  220. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +0 -2
  221. data/lib/new_relic/agent/transaction/trace.rb +8 -8
  222. data/lib/new_relic/agent/transaction/trace_context.rb +13 -15
  223. data/lib/new_relic/agent/transaction/trace_node.rb +16 -16
  224. data/lib/new_relic/agent/transaction/tracing.rb +1 -3
  225. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -2
  226. data/lib/new_relic/agent/transaction.rb +85 -108
  227. data/lib/new_relic/agent/transaction_error_primitive.rb +16 -16
  228. data/lib/new_relic/agent/transaction_event_aggregator.rb +5 -6
  229. data/lib/new_relic/agent/transaction_event_primitive.rb +29 -29
  230. data/lib/new_relic/agent/transaction_metrics.rb +3 -3
  231. data/lib/new_relic/agent/transaction_sampler.rb +0 -1
  232. data/lib/new_relic/agent/transaction_time_aggregator.rb +11 -11
  233. data/lib/new_relic/agent/utilization/azure.rb +1 -1
  234. data/lib/new_relic/agent/utilization_data.rb +3 -4
  235. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  236. data/lib/new_relic/agent/vm/snapshot.rb +4 -4
  237. data/lib/new_relic/agent/worker_loop.rb +8 -10
  238. data/lib/new_relic/agent.rb +27 -27
  239. data/lib/new_relic/cli/command.rb +15 -17
  240. data/lib/new_relic/cli/commands/deployments.rb +21 -23
  241. data/lib/new_relic/cli/commands/install.rb +6 -10
  242. data/lib/new_relic/coerce.rb +5 -8
  243. data/lib/new_relic/collection_helper.rb +48 -47
  244. data/lib/new_relic/constants.rb +0 -4
  245. data/lib/new_relic/control/class_methods.rb +2 -2
  246. data/lib/new_relic/control/frameworks/external.rb +1 -1
  247. data/lib/new_relic/control/frameworks/rails.rb +5 -6
  248. data/lib/new_relic/control/frameworks/rails3.rb +2 -3
  249. data/lib/new_relic/control/frameworks/ruby.rb +2 -2
  250. data/lib/new_relic/control/instance_methods.rb +4 -5
  251. data/lib/new_relic/control/instrumentation.rb +4 -5
  252. data/lib/new_relic/control/server_methods.rb +2 -3
  253. data/lib/new_relic/control.rb +0 -1
  254. data/lib/new_relic/dependency_detection.rb +6 -8
  255. data/lib/new_relic/environment_report.rb +16 -18
  256. data/lib/new_relic/helper.rb +5 -5
  257. data/lib/new_relic/language_support.rb +1 -1
  258. data/lib/new_relic/latest_changes.rb +2 -2
  259. data/lib/new_relic/local_environment.rb +7 -7
  260. data/lib/new_relic/metric_data.rb +6 -7
  261. data/lib/new_relic/metric_spec.rb +3 -3
  262. data/lib/new_relic/noticed_error.rb +16 -17
  263. data/lib/new_relic/rack/agent_middleware.rb +2 -2
  264. data/lib/new_relic/rack/browser_monitoring.rb +9 -9
  265. data/lib/new_relic/recipes/capistrano3.rb +11 -13
  266. data/lib/new_relic/recipes/capistrano_legacy.rb +11 -14
  267. data/lib/new_relic/supportability_helper.rb +1 -2
  268. data/lib/new_relic/version.rb +4 -5
  269. data/lib/newrelic_rpm.rb +10 -34
  270. data/lib/sequel/extensions/newrelic_instrumentation.rb +4 -7
  271. data/lib/sequel/plugins/newrelic_instrumentation.rb +3 -9
  272. data/lib/tasks/all.rb +2 -2
  273. data/lib/tasks/config.rake +21 -21
  274. data/lib/tasks/multiverse.rb +4 -6
  275. data/lib/tasks/tests.rake +3 -7
  276. data/newrelic.yml +580 -3
  277. data/newrelic_rpm.gemspec +13 -12
  278. data/recipes/newrelic.rb +1 -1
  279. data/test/agent_helper.rb +80 -55
  280. metadata +42 -13
  281. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  282. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
  283. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  284. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  285. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
  286. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
  287. data/lib/new_relic/agent/supported_versions.rb +0 -275
  288. data/lib/new_relic/control/frameworks/merb.rb +0 -29
@@ -6,7 +6,7 @@ module NewRelic
6
6
  module Agent
7
7
  module Configuration
8
8
  class DottedHash < ::Hash
9
- def initialize(hash, keep_nesting=false)
9
+ def initialize(hash, keep_nesting = false)
10
10
  # Add the hash keys to our collection explicitly so they survive the
11
11
  # dot flattening. This is typical for full config source instances,
12
12
  # but not for uses of DottedHash serializing for transmission.
@@ -31,8 +31,9 @@ module NewRelic
31
31
  end
32
32
 
33
33
  protected
34
+
34
35
  # turns {'a' => {'b' => 'c'}} into {'a.b' => 'c'}
35
- def dot_flattened(nested_hash, names=[], result={})
36
+ def dot_flattened(nested_hash, names = [], result = {})
36
37
  nested_hash.each do |key, val|
37
38
  next if val == nil
38
39
  if val.respond_to?(:has_key?)
@@ -44,7 +45,6 @@ module NewRelic
44
45
  result
45
46
  end
46
47
  end
47
-
48
48
  end
49
49
  end
50
50
  end
@@ -7,9 +7,9 @@ module NewRelic
7
7
  module Configuration
8
8
  class EnvironmentSource < DottedHash
9
9
  SUPPORTED_PREFIXES = /^new_relic_|^newrelic_/i
10
- SPECIAL_CASE_KEYS = [
10
+ SPECIAL_CASE_KEYS = [
11
11
  'NEW_RELIC_ENV', # read by NewRelic::Control::Frameworks::Ruby
12
- 'NEW_RELIC_LOG', # read by set_log_file
12
+ 'NEW_RELIC_LOG', # read by set_log_file
13
13
  /^NEW_RELIC_METADATA_/ # read by NewRelic::Agent::Connect::RequestBuilder
14
14
  ]
15
15
 
@@ -43,7 +43,7 @@ module NewRelic
43
43
  config_setting = original_config_setting.to_s
44
44
 
45
45
  if config_setting.include? '.'
46
- config_alias = config_setting.gsub(/\./,'_').to_sym
46
+ config_alias = config_setting.gsub(/\./, '_').to_sym
47
47
  self.alias_map[config_alias] = original_config_setting
48
48
  end
49
49
  end
@@ -111,7 +111,6 @@ module NewRelic
111
111
  def collect_new_relic_environment_variable_keys
112
112
  ENV.keys.select { |key| key.match(SUPPORTED_PREFIXES) }
113
113
  end
114
-
115
114
  end
116
115
  end
117
116
  end
@@ -6,37 +6,51 @@ module NewRelic
6
6
  module Agent
7
7
  module Configuration
8
8
  module EventHarvestConfig
9
-
10
9
  extend self
11
10
 
12
11
  EVENT_HARVEST_CONFIG_KEY_MAPPING = {
13
12
  :analytic_event_data => :'analytics_events.max_samples_stored',
14
13
  :custom_event_data => :'custom_insights_events.max_samples_stored',
15
- :error_event_data => :'error_collector.max_event_samples_stored',
16
- :span_event_data => :'span_events.max_samples_stored'
14
+ :error_event_data => :'error_collector.max_event_samples_stored'
17
15
  }
18
16
 
19
17
  def from_config(config)
20
- {:harvest_limits => EVENT_HARVEST_CONFIG_KEY_MAPPING.inject({}) do
21
- |connect_payload, (connect_payload_key, config_key)|
18
+ {:harvest_limits =>
19
+ EVENT_HARVEST_CONFIG_KEY_MAPPING.merge(
20
+ :span_event_data => :'span_events.max_samples_stored'
21
+ ).inject({}) do |connect_payload, (connect_payload_key, config_key)|
22
22
  connect_payload[connect_payload_key] = config[config_key]
23
23
  connect_payload
24
- end
25
- }
24
+ end}
26
25
  end
27
26
 
28
27
  def to_config_hash(connect_reply)
29
28
  event_harvest_interval = connect_reply['event_harvest_config']['report_period_ms'] / 1000
30
- config_hash = EVENT_HARVEST_CONFIG_KEY_MAPPING.inject({}) do
31
- |event_harvest_config, (connect_payload_key, config_key)|
32
- if harvest_limit = connect_reply['event_harvest_config']['harvest_limits'][connect_payload_key.to_s]
33
- event_harvest_config[config_key] = harvest_limit
34
- report_period_key = :"event_report_period.#{connect_payload_key}"
35
- event_harvest_config[report_period_key] = event_harvest_interval
36
- end
37
- event_harvest_config
38
- end
29
+ config_hash = transform_event_harvest_config_keys(connect_reply, event_harvest_interval)
39
30
  config_hash[:event_report_period] = event_harvest_interval
31
+ config_hash = transform_span_event_harvest_config(config_hash, connect_reply)
32
+ config_hash
33
+ end
34
+
35
+ private
36
+
37
+ def transform_event_harvest_config_keys(connect_reply, event_harvest_interval)
38
+ EVENT_HARVEST_CONFIG_KEY_MAPPING.inject({}) do |event_harvest_config, (connect_payload_key, config_key)|
39
+ if harvest_limit = connect_reply['event_harvest_config']['harvest_limits'][connect_payload_key.to_s]
40
+ event_harvest_config[config_key] = harvest_limit
41
+ report_period_key = :"event_report_period.#{connect_payload_key}"
42
+ event_harvest_config[report_period_key] = event_harvest_interval
43
+ end
44
+ event_harvest_config
45
+ end
46
+ end
47
+
48
+ def transform_span_event_harvest_config(config_hash, connect_reply)
49
+ if span_harvest = connect_reply['span_event_harvest_config']
50
+ config_hash[:'span_events.max_samples_stored'] = span_harvest['harvest_limit'] if span_harvest['harvest_limit']
51
+ config_hash[:'event_report_period.span_event_data'] = span_harvest['report_period_ms'] if span_harvest['report_period_ms']
52
+ end
53
+
40
54
  config_hash
41
55
  end
42
56
  end
@@ -10,17 +10,17 @@ module NewRelic
10
10
  class HighSecuritySource < DottedHash
11
11
  def initialize(local_settings)
12
12
  super({
13
- :capture_params => false,
14
- :'resque.capture_params' => false,
13
+ :capture_params => false,
14
+ :'resque.capture_params' => false,
15
15
  :'sidekiq.capture_params' => false,
16
- :'attributes.include' => [],
16
+ :'attributes.include' => [],
17
17
 
18
18
  :'transaction_tracer.record_sql' => record_sql_setting(local_settings, :'transaction_tracer.record_sql'),
19
- :'slow_sql.record_sql' => record_sql_setting(local_settings, :'slow_sql.record_sql'),
20
- :'mongo.obfuscate_queries' => true,
19
+ :'slow_sql.record_sql' => record_sql_setting(local_settings, :'slow_sql.record_sql'),
20
+ :'mongo.obfuscate_queries' => true,
21
21
  :'transaction_tracer.record_redis_arguments' => false,
22
22
 
23
- :'custom_insights_events.enabled' => false,
23
+ :'custom_insights_events.enabled' => false,
24
24
  :'strip_exception_messages.enabled' => true
25
25
  })
26
26
  end
@@ -32,7 +32,7 @@ module NewRelic
32
32
  SET_TO_OBFUSCATED = [RAW, OBFUSCATED]
33
33
 
34
34
  def record_sql_setting(local_settings, key)
35
- original_value = local_settings[key]
35
+ original_value = local_settings[key]
36
36
  result = if SET_TO_OBFUSCATED.include?(original_value)
37
37
  OBFUSCATED
38
38
  else
@@ -15,7 +15,6 @@ module NewRelic
15
15
  module Agent
16
16
  module Configuration
17
17
  class Manager
18
-
19
18
  # Defining these explicitly saves object allocations that we incur
20
19
  # if we use Forwardable and def_delegators.
21
20
  def [](key)
@@ -32,10 +31,10 @@ module NewRelic
32
31
 
33
32
  def initialize
34
33
  reset_to_defaults
35
- @callbacks = Hash.new {|hash,key| hash[key] = [] }
34
+ @callbacks = Hash.new { |hash, key| hash[key] = [] }
36
35
  end
37
36
 
38
- def add_config_for_testing(source, level=0)
37
+ def add_config_for_testing(source, level = 0)
39
38
  raise 'Invalid config type for testing' unless [Hash, DottedHash].include?(source.class)
40
39
  invoke_callbacks(:add, source)
41
40
  @configs_for_testing << [source.freeze, level]
@@ -46,12 +45,12 @@ module NewRelic
46
45
  def remove_config_type(sym)
47
46
  source = case sym
48
47
  when :security_policy then @security_policy_source
49
- when :high_security then @high_security_source
50
- when :environment then @environment_source
51
- when :server then @server_source
52
- when :manual then @manual_source
53
- when :yaml then @yaml_source
54
- when :default then @default_source
48
+ when :high_security then @high_security_source
49
+ when :environment then @environment_source
50
+ when :server then @server_source
51
+ when :manual then @manual_source
52
+ when :yaml then @yaml_source
53
+ when :default then @default_source
55
54
  end
56
55
 
57
56
  remove_config(source)
@@ -60,14 +59,14 @@ module NewRelic
60
59
  def remove_config(source)
61
60
  case source
62
61
  when SecurityPolicySource then @security_policy_source = nil
63
- when HighSecuritySource then @high_security_source = nil
64
- when EnvironmentSource then @environment_source = nil
65
- when ServerSource then @server_source = nil
66
- when ManualSource then @manual_source = nil
67
- when YamlSource then @yaml_source = nil
68
- when DefaultSource then @default_source = nil
62
+ when HighSecuritySource then @high_security_source = nil
63
+ when EnvironmentSource then @environment_source = nil
64
+ when ServerSource then @server_source = nil
65
+ when ManualSource then @manual_source = nil
66
+ when YamlSource then @yaml_source = nil
67
+ when DefaultSource then @default_source = nil
69
68
  else
70
- @configs_for_testing.delete_if {|src,lvl| src == source}
69
+ @configs_for_testing.delete_if { |src, lvl| src == source }
71
70
  end
72
71
 
73
72
  reset_cache
@@ -83,12 +82,12 @@ module NewRelic
83
82
 
84
83
  case source
85
84
  when SecurityPolicySource then @security_policy_source = source
86
- when HighSecuritySource then @high_security_source = source
87
- when EnvironmentSource then @environment_source = source
88
- when ServerSource then @server_source = source
89
- when ManualSource then @manual_source = source
90
- when YamlSource then @yaml_source = source
91
- when DefaultSource then @default_source = source
85
+ when HighSecuritySource then @high_security_source = source
86
+ when EnvironmentSource then @environment_source = source
87
+ when ServerSource then @server_source = source
88
+ when ManualSource then @manual_source = source
89
+ when YamlSource then @yaml_source = source
90
+ when DefaultSource then @default_source = source
92
91
  else
93
92
  NewRelic::Agent.logger.warn("Invalid config format; config will be ignored: #{source}")
94
93
  end
@@ -192,9 +191,9 @@ module NewRelic
192
191
  end
193
192
 
194
193
  def flattened
195
- config_stack.reverse.inject({}) do |flat,layer|
194
+ config_stack.reverse.inject({}) do |flat, layer|
196
195
  thawed_layer = layer.to_hash.dup
197
- thawed_layer.each do |k,v|
196
+ thawed_layer.each do |k, v|
198
197
  begin
199
198
  thawed_layer[k] = instance_eval(&v) if v.respond_to?(:call)
200
199
  rescue => e
@@ -208,9 +207,9 @@ module NewRelic
208
207
  end
209
208
 
210
209
  def apply_mask(hash)
211
- MASK_DEFAULTS. \
212
- select {|_, proc| proc.call}. \
213
- each {|key, _| hash.delete(key) }
210
+ MASK_DEFAULTS \
211
+ .select { |_, proc| proc.call } \
212
+ .each { |key, _| hash.delete(key) }
214
213
  hash
215
214
  end
216
215
 
@@ -229,9 +228,9 @@ module NewRelic
229
228
  end
230
229
 
231
230
  MALFORMED_LABELS_WARNING = "Skipping malformed labels configuration"
232
- PARSING_LABELS_FAILURE = "Failure during parsing labels. Ignoring and carrying on with connect."
231
+ PARSING_LABELS_FAILURE = "Failure during parsing labels. Ignoring and carrying on with connect."
233
232
 
234
- MAX_LABEL_COUNT = 64
233
+ MAX_LABEL_COUNT = 64
235
234
  MAX_LABEL_LENGTH = 255
236
235
 
237
236
  def parsed_labels
@@ -253,7 +252,7 @@ module NewRelic
253
252
  end
254
253
 
255
254
  def break_label_string_into_pairs(labels)
256
- stripped_labels = labels.strip.sub(/^;*/,'').sub(/;*$/,'')
255
+ stripped_labels = labels.strip.sub(/^;*/, '').sub(/;*$/, '')
257
256
  stripped_labels.split(';').map do |pair|
258
257
  pair.split(':').map(&:strip)
259
258
  end
@@ -269,10 +268,10 @@ module NewRelic
269
268
 
270
269
  def valid_label_item?(item)
271
270
  case item
272
- when String then !item.empty?
271
+ when String then !item.empty?
273
272
  when Numeric then true
274
- when true then true
275
- when false then true
273
+ when true then true
274
+ when false then true
276
275
  else false
277
276
  end
278
277
  end
@@ -282,7 +281,7 @@ module NewRelic
282
281
  pairs = Array(pairs)
283
282
 
284
283
  unless valid_label_pairs?(pairs)
285
- NewRelic::Agent.logger.warn("#{MALFORMED_LABELS_WARNING}: #{labels||pairs}")
284
+ NewRelic::Agent.logger.warn("#{MALFORMED_LABELS_WARNING}: #{labels || pairs}")
286
285
  return []
287
286
  end
288
287
 
@@ -290,13 +289,13 @@ module NewRelic
290
289
  pairs = remove_duplicates(pairs)
291
290
  pairs.map do |key, value|
292
291
  {
293
- 'label_type' => truncate(key),
292
+ 'label_type' => truncate(key),
294
293
  'label_value' => truncate(value.to_s, key)
295
294
  }
296
295
  end
297
296
  end
298
297
 
299
- def truncate(text, key=nil)
298
+ def truncate(text, key = nil)
300
299
  if text.length > MAX_LABEL_LENGTH
301
300
  if key
302
301
  msg = "The value for the label '#{key}' is longer than the allowed #{MAX_LABEL_LENGTH} and will be truncated. Value = '#{text}'"
@@ -304,7 +303,7 @@ module NewRelic
304
303
  msg = "Label name longer than the allowed #{MAX_LABEL_LENGTH} will be truncated. Name = '#{text}'"
305
304
  end
306
305
  NewRelic::Agent.logger.warn(msg)
307
- text[0..MAX_LABEL_LENGTH-1]
306
+ text[0..MAX_LABEL_LENGTH - 1]
308
307
  else
309
308
  text
310
309
  end
@@ -332,20 +331,20 @@ module NewRelic
332
331
  # Generally only useful during initial construction and tests
333
332
  def reset_to_defaults
334
333
  @security_policy_source = nil
335
- @high_security_source = nil
336
- @environment_source = EnvironmentSource.new
337
- @server_source = nil
338
- @manual_source = nil
339
- @yaml_source = nil
340
- @default_source = DefaultSource.new
334
+ @high_security_source = nil
335
+ @environment_source = EnvironmentSource.new
336
+ @server_source = nil
337
+ @manual_source = nil
338
+ @yaml_source = nil
339
+ @default_source = DefaultSource.new
341
340
 
342
- @configs_for_testing = []
341
+ @configs_for_testing = []
343
342
 
344
343
  reset_cache
345
344
  end
346
345
 
347
346
  def reset_cache
348
- @cache = Hash.new { |hash,key| hash[key] = self.fetch(key) }
347
+ @cache = Hash.new { |hash, key| hash[key] = self.fetch(key) }
349
348
  end
350
349
 
351
350
  def log_config(direction, source)
@@ -360,13 +359,13 @@ module NewRelic
360
359
 
361
360
  def delete_all_configs_for_testing
362
361
  @security_policy_source = nil
363
- @high_security_source = nil
364
- @environment_source = nil
365
- @server_source = nil
366
- @manual_source = nil
367
- @yaml_source = nil
368
- @default_source = nil
369
- @configs_for_testing = []
362
+ @high_security_source = nil
363
+ @environment_source = nil
364
+ @server_source = nil
365
+ @manual_source = nil
366
+ @yaml_source = nil
367
+ @default_source = nil
368
+ @configs_for_testing = []
370
369
  end
371
370
 
372
371
  def num_configs_for_testing
@@ -381,12 +380,12 @@ module NewRelic
381
380
 
382
381
  def config_stack
383
382
  stack = [@security_policy_source,
384
- @high_security_source,
385
- @environment_source,
386
- @server_source,
387
- @manual_source,
388
- @yaml_source,
389
- @default_source]
383
+ @high_security_source,
384
+ @environment_source,
385
+ @server_source,
386
+ @manual_source,
387
+ @yaml_source,
388
+ @default_source]
390
389
 
391
390
  stack.compact!
392
391
 
@@ -6,7 +6,7 @@ module NewRelic
6
6
  module Agent
7
7
  module Configuration
8
8
  MASK_DEFAULTS = {
9
- :'thread_profiler' => Proc.new { !NewRelic::Agent::Threading::BacktraceService.is_supported? },
9
+ :'thread_profiler' => Proc.new { !NewRelic::Agent::Threading::BacktraceService.is_supported? },
10
10
  :'thread_profiler.enabled' => Proc.new { !NewRelic::Agent::Threading::BacktraceService.is_supported? }
11
11
  }
12
12
  end
@@ -52,150 +52,150 @@ module NewRelic
52
52
  SECURITY_SETTINGS_MAP = {
53
53
  "record_sql" => [
54
54
  {
55
- option: :'transaction_tracer.record_sql',
56
- supported: true,
57
- enabled_fn: method(:record_sql_enabled?),
55
+ option: :'transaction_tracer.record_sql',
56
+ supported: true,
57
+ enabled_fn: method(:record_sql_enabled?),
58
58
  disabled_value: 'off',
59
- permitted_fn: proc { |policies|
59
+ permitted_fn: proc { |policies|
60
60
  change_setting(policies, :'transaction_tracer.record_sql', 'obfuscated')
61
61
  }
62
62
  },
63
63
  {
64
- option: :'slow_sql.record_sql',
65
- supported: true,
66
- enabled_fn: method(:record_sql_enabled?),
64
+ option: :'slow_sql.record_sql',
65
+ supported: true,
66
+ enabled_fn: method(:record_sql_enabled?),
67
67
  disabled_value: 'off',
68
- permitted_fn: proc { |policies|
68
+ permitted_fn: proc { |policies|
69
69
  change_setting(policies, :'slow_sql.record_sql', 'obfuscated')
70
70
  }
71
71
  },
72
72
  {
73
- option: :'mongo.capture_queries',
74
- supported: true,
75
- enabled_fn: method(:enabled?),
73
+ option: :'mongo.capture_queries',
74
+ supported: true,
75
+ enabled_fn: method(:enabled?),
76
76
  disabled_value: false,
77
- permitted_fn: proc{ |policies|
77
+ permitted_fn: proc { |policies|
78
78
  change_setting(policies, :'mongo.obfuscate_queries', true)
79
79
  }
80
80
  },
81
81
  {
82
- option: :'transaction_tracer.record_redis_arguments',
83
- supported: true,
84
- enabled_fn: method(:enabled?),
82
+ option: :'transaction_tracer.record_redis_arguments',
83
+ supported: true,
84
+ enabled_fn: method(:enabled?),
85
85
  disabled_value: false,
86
- permitted_fn: nil
86
+ permitted_fn: nil
87
87
  }
88
88
  ],
89
89
  "attributes_include" => [
90
90
  {
91
- option: :'attributes.include',
92
- supported: true,
93
- enabled_fn: method(:not_empty?),
91
+ option: :'attributes.include',
92
+ supported: true,
93
+ enabled_fn: method(:not_empty?),
94
94
  disabled_value: [],
95
- permitted_fn: nil
95
+ permitted_fn: nil
96
96
  },
97
97
  {
98
- option: :'transaction_tracer.attributes.include',
99
- supported: true,
100
- enabled_fn: method(:not_empty?),
98
+ option: :'transaction_tracer.attributes.include',
99
+ supported: true,
100
+ enabled_fn: method(:not_empty?),
101
101
  disabled_value: [],
102
- permitted_fn: nil
102
+ permitted_fn: nil
103
103
  },
104
104
  {
105
- option: :'transaction_events.attributes.include',
106
- supported: true,
107
- enabled_fn: method(:not_empty?),
105
+ option: :'transaction_events.attributes.include',
106
+ supported: true,
107
+ enabled_fn: method(:not_empty?),
108
108
  disabled_value: [],
109
- permitted_fn: nil
109
+ permitted_fn: nil
110
110
  },
111
111
  {
112
- option: :'error_collector.attributes.include',
113
- supported: true,
114
- enabled_fn: method(:not_empty?),
112
+ option: :'error_collector.attributes.include',
113
+ supported: true,
114
+ enabled_fn: method(:not_empty?),
115
115
  disabled_value: [],
116
- permitted_fn: nil
116
+ permitted_fn: nil
117
117
  },
118
118
  {
119
- option: :'browser_monitoring.attributes.include',
120
- supported: true,
121
- enabled_fn: method(:not_empty?),
119
+ option: :'browser_monitoring.attributes.include',
120
+ supported: true,
121
+ enabled_fn: method(:not_empty?),
122
122
  disabled_value: [],
123
- permitted_fn: nil
123
+ permitted_fn: nil
124
124
  },
125
125
  {
126
- option: :'span_events.attributes.include',
127
- supported: true,
128
- enabled_fn: method(:not_empty?),
126
+ option: :'span_events.attributes.include',
127
+ supported: true,
128
+ enabled_fn: method(:not_empty?),
129
129
  disabled_value: [],
130
- permitted_fn: nil
130
+ permitted_fn: nil
131
131
  },
132
132
  {
133
- option: :'transaction_segments.attributes.include',
134
- supported: true,
135
- enabled_fn: method(:not_empty?),
133
+ option: :'transaction_segments.attributes.include',
134
+ supported: true,
135
+ enabled_fn: method(:not_empty?),
136
136
  disabled_value: [],
137
- permitted_fn: nil
137
+ permitted_fn: nil
138
138
  }
139
139
  ],
140
140
  "allow_raw_exception_messages" => [
141
141
  {
142
- option: :'strip_exception_messages.enabled',
143
- supported: true,
144
- enabled_fn: method(:enabled?),
142
+ option: :'strip_exception_messages.enabled',
143
+ supported: true,
144
+ enabled_fn: method(:enabled?),
145
145
  disabled_value: false,
146
- permitted_fn: nil
146
+ permitted_fn: nil
147
147
  }
148
148
  ],
149
149
  "custom_events" => [
150
150
  {
151
- option: :'custom_insights_events.enabled',
152
- supported: true,
153
- enabled_fn: method(:enabled?),
151
+ option: :'custom_insights_events.enabled',
152
+ supported: true,
153
+ enabled_fn: method(:enabled?),
154
154
  disabled_value: false,
155
- permitted_fn: nil
155
+ permitted_fn: nil
156
156
  }
157
157
  ],
158
158
  "custom_parameters" => [
159
159
  {
160
- option: :'custom_attributes.enabled',
161
- supported: true,
162
- enabled_fn: method(:enabled?),
160
+ option: :'custom_attributes.enabled',
161
+ supported: true,
162
+ enabled_fn: method(:enabled?),
163
163
  disabled_value: false,
164
- permitted_fn: nil
164
+ permitted_fn: nil
165
165
  }
166
166
  ],
167
167
  "custom_instrumentation_editor" => [
168
168
  {
169
- option: nil,
170
- supported: false,
171
- enabled_fn: nil,
169
+ option: nil,
170
+ supported: false,
171
+ enabled_fn: nil,
172
172
  disabled_value: nil,
173
- permitted_fn: nil
173
+ permitted_fn: nil
174
174
  }
175
175
  ],
176
176
  "message_parameters" => [
177
177
  {
178
- option: :'message_tracer.segment_parameters.enabled',
179
- supported: true,
180
- enabled_fn: method(:enabled?),
178
+ option: :'message_tracer.segment_parameters.enabled',
179
+ supported: true,
180
+ enabled_fn: method(:enabled?),
181
181
  disabled_value: false,
182
- permitted_fn: nil
182
+ permitted_fn: nil
183
183
  }
184
184
  ],
185
185
  "job_arguments" => [
186
186
  {
187
- option: :'resque.capture_params',
188
- supported: true,
189
- enabled_fn: method(:enabled?),
187
+ option: :'resque.capture_params',
188
+ supported: true,
189
+ enabled_fn: method(:enabled?),
190
190
  disabled_value: false,
191
- permitted_fn: nil
191
+ permitted_fn: nil
192
192
  },
193
193
  {
194
- option: :'sidekiq.capture_params',
195
- supported: true,
196
- enabled_fn: method(:enabled?),
194
+ option: :'sidekiq.capture_params',
195
+ supported: true,
196
+ enabled_fn: method(:enabled?),
197
197
  disabled_value: false,
198
- permitted_fn: nil
198
+ permitted_fn: nil
199
199
  }
200
200
  ]
201
201
  }
@@ -223,7 +223,7 @@ module NewRelic
223
223
  "Source: #{config_source}"
224
224
  end
225
225
  else
226
- settings[policy[:option]] = policy[:disabled_value]
226
+ settings[policy[:option]] = policy[:disabled_value]
227
227
  NewRelic::Agent.logger.info \
228
228
  "Setting applied: {#{policy[:option]}: #{policy[:disabled_value]}}. " \
229
229
  "Source: SecurityPolicySource"