honkster-newrelic_rpm 2.13.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +462 -0
- data/LICENSE +37 -0
- data/README.rdoc +172 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic +13 -0
- data/bin/newrelic_cmd +5 -0
- data/cert/cacert.pem +34 -0
- data/install.rb +9 -0
- data/lib/new_relic/agent.rb +382 -0
- data/lib/new_relic/agent/agent.rb +741 -0
- data/lib/new_relic/agent/busy_calculator.rb +91 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/error_collector.rb +131 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +18 -0
- data/lib/new_relic/agent/instrumentation/active_record_instrumentation.rb +92 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +45 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +8 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +409 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +58 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +22 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +40 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +26 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +9 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +319 -0
- data/lib/new_relic/agent/instrumentation/net.rb +17 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +22 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +59 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +27 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +24 -0
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +45 -0
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +21 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +46 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +17 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +10 -0
- data/lib/new_relic/agent/method_tracer.rb +350 -0
- data/lib/new_relic/agent/sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +54 -0
- data/lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb +37 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +142 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +24 -0
- data/lib/new_relic/agent/shim_agent.rb +25 -0
- data/lib/new_relic/agent/stats_engine.rb +24 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +118 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +83 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +149 -0
- data/lib/new_relic/agent/transaction_sampler.rb +330 -0
- data/lib/new_relic/agent/worker_loop.rb +81 -0
- data/lib/new_relic/collection_helper.rb +71 -0
- data/lib/new_relic/command.rb +85 -0
- data/lib/new_relic/commands/deployments.rb +105 -0
- data/lib/new_relic/commands/install.rb +81 -0
- data/lib/new_relic/control.rb +203 -0
- data/lib/new_relic/control/configuration.rb +149 -0
- data/lib/new_relic/control/frameworks/external.rb +13 -0
- data/lib/new_relic/control/frameworks/merb.rb +24 -0
- data/lib/new_relic/control/frameworks/rails.rb +126 -0
- data/lib/new_relic/control/frameworks/rails3.rb +60 -0
- data/lib/new_relic/control/frameworks/ruby.rb +36 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +18 -0
- data/lib/new_relic/control/instrumentation.rb +95 -0
- data/lib/new_relic/control/logging_methods.rb +74 -0
- data/lib/new_relic/control/profiling.rb +24 -0
- data/lib/new_relic/control/server_methods.rb +88 -0
- data/lib/new_relic/delayed_job_injection.rb +27 -0
- data/lib/new_relic/histogram.rb +91 -0
- data/lib/new_relic/local_environment.rb +333 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +42 -0
- data/lib/new_relic/metric_parser.rb +136 -0
- data/lib/new_relic/metric_parser/action_mailer.rb +9 -0
- data/lib/new_relic/metric_parser/active_merchant.rb +26 -0
- data/lib/new_relic/metric_parser/active_record.rb +28 -0
- data/lib/new_relic/metric_parser/apdex.rb +88 -0
- data/lib/new_relic/metric_parser/controller.rb +62 -0
- data/lib/new_relic/metric_parser/controller_cpu.rb +38 -0
- data/lib/new_relic/metric_parser/errors.rb +6 -0
- data/lib/new_relic/metric_parser/external.rb +50 -0
- data/lib/new_relic/metric_parser/mem_cache.rb +50 -0
- data/lib/new_relic/metric_parser/other_transaction.rb +36 -0
- data/lib/new_relic/metric_parser/view.rb +61 -0
- data/lib/new_relic/metric_parser/web_frontend.rb +14 -0
- data/lib/new_relic/metric_parser/web_service.rb +9 -0
- data/lib/new_relic/metric_spec.rb +67 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +24 -0
- data/lib/new_relic/rack/developer_mode.rb +257 -0
- data/lib/new_relic/rack/metric_app.rb +64 -0
- data/lib/new_relic/rack/mongrel_rpm.ru +26 -0
- data/lib/new_relic/rack/newrelic.yml +27 -0
- data/lib/new_relic/rack_app.rb +6 -0
- data/lib/new_relic/recipes.rb +82 -0
- data/lib/new_relic/stats.rb +368 -0
- data/lib/new_relic/timer_lib.rb +27 -0
- data/lib/new_relic/transaction_analysis.rb +119 -0
- data/lib/new_relic/transaction_sample.rb +586 -0
- data/lib/new_relic/url_rule.rb +14 -0
- data/lib/new_relic/version.rb +55 -0
- data/lib/new_relic_api.rb +276 -0
- data/lib/newrelic_rpm.rb +49 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +15 -0
- data/newrelic.yml +246 -0
- data/newrelic_rpm.gemspec +254 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +55 -0
- data/test/config/newrelic.yml +48 -0
- data/test/config/test_control.rb +36 -0
- data/test/new_relic/agent/active_record_instrumentation_test.rb +286 -0
- data/test/new_relic/agent/agent_controller_test.rb +294 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/busy_calculator_test.rb +81 -0
- data/test/new_relic/agent/collection_helper_test.rb +125 -0
- data/test/new_relic/agent/error_collector_test.rb +163 -0
- data/test/new_relic/agent/memcache_instrumentation_test.rb +103 -0
- data/test/new_relic/agent/method_tracer_test.rb +340 -0
- data/test/new_relic/agent/metric_data_test.rb +53 -0
- data/test/new_relic/agent/metric_frame_test.rb +51 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/net_instrumentation_test.rb +77 -0
- data/test/new_relic/agent/rpm_agent_test.rb +142 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +79 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +72 -0
- data/test/new_relic/agent/stats_engine/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/task_instrumentation_test.rb +188 -0
- data/test/new_relic/agent/testable_agent.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +195 -0
- data/test/new_relic/agent/transaction_sample_test.rb +192 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +385 -0
- data/test/new_relic/agent/worker_loop_test.rb +66 -0
- data/test/new_relic/control_test.rb +127 -0
- data/test/new_relic/deployments_api_test.rb +69 -0
- data/test/new_relic/environment_test.rb +75 -0
- data/test/new_relic/metric_parser_test.rb +226 -0
- data/test/new_relic/metric_spec_test.rb +177 -0
- data/test/new_relic/rack/episodes_test.rb +318 -0
- data/test/new_relic/shim_agent_test.rb +9 -0
- data/test/new_relic/stats_test.rb +312 -0
- data/test/new_relic/version_number_test.rb +89 -0
- data/test/test_contexts.rb +28 -0
- data/test/test_helper.rb +72 -0
- data/ui/helpers/developer_mode_helper.rb +359 -0
- data/ui/helpers/google_pie_chart.rb +49 -0
- data/ui/views/layouts/newrelic_default.rhtml +47 -0
- data/ui/views/newrelic/_explain_plans.rhtml +27 -0
- data/ui/views/newrelic/_sample.rhtml +20 -0
- data/ui/views/newrelic/_segment.rhtml +29 -0
- data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
- data/ui/views/newrelic/_segment_row.rhtml +14 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +20 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +16 -0
- data/ui/views/newrelic/_stack_trace.rhtml +15 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +43 -0
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
- data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
- data/ui/views/newrelic/file/stylesheets/style.css +484 -0
- data/ui/views/newrelic/index.rhtml +59 -0
- data/ui/views/newrelic/sample_not_found.rhtml +2 -0
- data/ui/views/newrelic/show_sample.rhtml +79 -0
- data/ui/views/newrelic/show_source.rhtml +3 -0
- data/ui/views/newrelic/threads.rhtml +52 -0
- metadata +307 -0
data/CHANGELOG
ADDED
@@ -0,0 +1,462 @@
|
|
1
|
+
v2.13.1
|
2
|
+
* Add missing require in rails 3 framework control
|
3
|
+
|
4
|
+
v2.13.0
|
5
|
+
* developer mode is now a rack middleware and can be used on any framework;
|
6
|
+
it is no longer supported automatically on versions of Rails prior to 2.3;
|
7
|
+
see README for details
|
8
|
+
* memcache key recording for transaction traces
|
9
|
+
* use system_timer gem if available, fall back to timeout lib
|
10
|
+
* address instability issues in JRuby 1.2
|
11
|
+
* renamed executable 'newrelic_cmd' to 'newrelic'; old name still supported
|
12
|
+
for backward compatibility
|
13
|
+
* added 'newrelic install' command to install a newrelic.yml file in the
|
14
|
+
current directory
|
15
|
+
* optimization to execution time measurement
|
16
|
+
* optimization to startup sequence
|
17
|
+
* change startup sequence so that instrumentation is installed after all
|
18
|
+
other gems and plugins have loaded
|
19
|
+
* add option to override automatic flushing of data on exit--send_data_on_exit
|
20
|
+
defaults to 'true'
|
21
|
+
* ignored errors no longer affect apdex score
|
22
|
+
* added record_transaction method to the api to allow recording
|
23
|
+
details from web and background transactions occurring outside RPM
|
24
|
+
* fixed a bug related to enabling a gold trial / upgrade not sending
|
25
|
+
trasaction traces correctly
|
26
|
+
|
27
|
+
v2.12.3
|
28
|
+
* fix regression in startup sequence
|
29
|
+
|
30
|
+
v2.12.2
|
31
|
+
* fix for regression in Rails 2.1 inline rendering
|
32
|
+
* workaround bug found in some rubies that caused a segv and/or NoMemoryError
|
33
|
+
when deflating content for upload
|
34
|
+
* avoid creating connection thread in unicorn/passenger spawners
|
35
|
+
|
36
|
+
v2.12.1
|
37
|
+
* fix bug in profile mode
|
38
|
+
* fix race condition in Delayed::Job instrumentation loading
|
39
|
+
* fix glassfish detection in latest glassfish gem
|
40
|
+
|
41
|
+
v2.12.0
|
42
|
+
* support basic instrumentation for ActsAsSolr and Sunspot
|
43
|
+
|
44
|
+
v2.11.3
|
45
|
+
* fix bug in startup when running JRuby
|
46
|
+
|
47
|
+
v2.11.2
|
48
|
+
* fix for unicorn not reporting when the proc line had 'master' in it
|
49
|
+
* fix regression for passenger 2.0 and earlier
|
50
|
+
* fix after_fork in the shim
|
51
|
+
|
52
|
+
v2.11.1
|
53
|
+
* republished gem without generated rdocs
|
54
|
+
|
55
|
+
v2.11.0
|
56
|
+
* rails3 instrumentation (no developer mode support yet)
|
57
|
+
* removed the ensure_worker_thread started and instead defined an after_fork
|
58
|
+
handler that will set up the agent properly in forked processes.
|
59
|
+
* change at_exit handler so the shutdown always goes after other shutdown
|
60
|
+
handlers
|
61
|
+
* add visibility to active record db transactions in the rpm transaction
|
62
|
+
traces (thanks to jeremy kemper)
|
63
|
+
* fix regression in merb support which caused merb apps not to start
|
64
|
+
* added NewRelic::Agent.logger to the public api to write to the agent
|
65
|
+
log file.
|
66
|
+
* optimizations to background thread, controller instrumentation, memory
|
67
|
+
usage
|
68
|
+
* add logger method to public_api
|
69
|
+
* support list notation for ignored exceptions in the newrelic.yml
|
70
|
+
|
71
|
+
v2.10.8
|
72
|
+
* fix bug in delayed_job instrumentation that caused the job queue sampler
|
73
|
+
to run in the wrong place
|
74
|
+
* change startup sequence and code that restarts the worker loop
|
75
|
+
thread
|
76
|
+
* detect the unicorn master and dont start the agent; hook in after_fork
|
77
|
+
* fix problem with the Authlogic metric names which caused errors in
|
78
|
+
developer mode. Authlogic metrics now adhere to the convention of
|
79
|
+
prefixing the name with 'Custom'
|
80
|
+
* allow more correct overriding of transaction trace settings in the
|
81
|
+
call to #manual_start
|
82
|
+
* simplify WorkerLoop and add better protection for concurrency
|
83
|
+
* preliminary support for rails3
|
84
|
+
|
85
|
+
v2.10.6
|
86
|
+
* fix missing URL and referer on some traced errors and transactions
|
87
|
+
* gather traced errors *after* executing the rescue chain in ActionController
|
88
|
+
* always load controller instrumentation
|
89
|
+
* pick up token validation from newrelic.yml
|
90
|
+
|
91
|
+
v2.10.5
|
92
|
+
* fix bug in delayed_job instrumentation occurring when there was no DJ log
|
93
|
+
|
94
|
+
v2.10.4
|
95
|
+
* fix incompatibility with Capistrano 2.5.16
|
96
|
+
* strip down URLs reported in transactions and errors to path only
|
97
|
+
|
98
|
+
v2.10.3
|
99
|
+
* optimization to reduce overhead: move background samplers into foreground thread
|
100
|
+
* change default config file to ignore RoutingErrors
|
101
|
+
* moved the background task instrumentation into a separate tab in the RPM UI
|
102
|
+
* allow override of the RPM application name via NEWRELIC_APP_NAME environment variable
|
103
|
+
* revised Delayed::Job instrumentation so no manual_start is required
|
104
|
+
* send buffered data on shutdown
|
105
|
+
* expanded support for queue length and queue time
|
106
|
+
* remove calls to starts_with to fix Sinatra and non-rails deployments
|
107
|
+
* fix problem with apdex scores recording too low in some circumstances
|
108
|
+
* switch to jeweler for gem building
|
109
|
+
* minor fixes, test improvements, doc and rakefile improvements
|
110
|
+
* fix incompatibility with Hoptoad where Hoptoad was not getting errors handled by New Relic
|
111
|
+
* many other optimizations, bug fixes and documentation improvements
|
112
|
+
|
113
|
+
v2.10.2.
|
114
|
+
* beta release of 2.10
|
115
|
+
* fix bugs with Sinatra app instrumentation
|
116
|
+
* minor doc updates
|
117
|
+
|
118
|
+
v2.10.1.
|
119
|
+
* alpha release of 2.10
|
120
|
+
* rack support, including metal; ignores 404s; requires a module inclusion (see docs)
|
121
|
+
* sinatra support, displays actions named by the URI pattern matched
|
122
|
+
* add API method to abort transaction recording for in-flight transactions
|
123
|
+
* remove account management calls from newrelic_api.rb
|
124
|
+
* truncating extremely large transaction traces for efficiency
|
125
|
+
* fix error reporting in recipes; add newrelic_rails_env option to recipes to
|
126
|
+
override the rails env used to pull the app_name out of newrelic.yml
|
127
|
+
* added TorqueBox recognition (thanks Bob McWhirter)
|
128
|
+
* renamed config settings: enabled => monitor_mode; developer => developer_mode;
|
129
|
+
old names will still work in newrelic.yml
|
130
|
+
* instrumentation for DelayedJob (thanks Travis Tilley)
|
131
|
+
* added config switches to turn off certain instrumentation when you aren't
|
132
|
+
interested in the metrics, to save on overhead--see newrelic.yml for details.
|
133
|
+
* add profiling support to dev mode; very experimental!
|
134
|
+
* add 'multi_threaded' config option to indicate when the app is running
|
135
|
+
multi-threaded, so we can disable some instrumentation
|
136
|
+
* fix test failures in JRuby, REE
|
137
|
+
* improve Net::HTTP instrumentation so its more efficient and distinguishes calls
|
138
|
+
between web and non-web transactions.
|
139
|
+
* database instrumentation notices all database commands in addition to the core commands
|
140
|
+
* add support for textmate to dev mode
|
141
|
+
* added add_transaction_tracer method to support instrumenting methods as
|
142
|
+
if they were web transactions; this will facilitate better visibility of background
|
143
|
+
tasks and eventually things like rack, metal and Sinatra
|
144
|
+
* adjusted apdex scores to reflect time spent in the mongrel queue
|
145
|
+
* fixed incompatibility with JRuby on startup
|
146
|
+
* implmented CPU measure for JRuby which reflects the cpu burn for
|
147
|
+
all controller actions (does not include background tasks)
|
148
|
+
* fixed scope issue with GC instrumentation, subtracting time from caller
|
149
|
+
* added # of GC calls to GC instrumentation
|
150
|
+
* renamed the dispatcher metric
|
151
|
+
* refactored stats_engine code for readability
|
152
|
+
* optimization: reduce wakeup times for harvest thread
|
153
|
+
|
154
|
+
v2.10.0.
|
155
|
+
* alpha release of 2.10
|
156
|
+
* support unicorn
|
157
|
+
* instrumentation of GC for REE and MRE with GC patch
|
158
|
+
* support agent restarting when changes are made to the account
|
159
|
+
* removed #newrelic_notice_error from Object class, replaced by NewRelic::Agent#notic_error
|
160
|
+
* collect histogram statistics
|
161
|
+
* add custom parameters to newrelic_notice_error call to display
|
162
|
+
extra info for errors
|
163
|
+
* add method disable_all_tracing(&block) to execute a block without
|
164
|
+
capturing metrics
|
165
|
+
* newrelic_ignore now blocks all instrumentation collection for
|
166
|
+
the specified actions
|
167
|
+
* added doc to method_tracer API and removed second arg
|
168
|
+
requirement for add_method_tracer call
|
169
|
+
* instrumentation for Net::HTTP
|
170
|
+
* remove method_tracer shim to avoid timing problems in monitoring daemons
|
171
|
+
* for non-rails daemons, look at APP_ROOT and NRCONFIG env vars for custom locations
|
172
|
+
|
173
|
+
v2.9.9.
|
174
|
+
* Disable at_exit handler for Unicorn which sometimes caused the
|
175
|
+
agent to stop reporting immediately.
|
176
|
+
|
177
|
+
v2.9.8.
|
178
|
+
* add instrumentation for Net::HTTP calls, to show up as "External"
|
179
|
+
* added support for validating agents in the cloud.
|
180
|
+
* recognize Unicorn dispatcher
|
181
|
+
* add NewRelic module definitions to ActiveRecord instrumentation
|
182
|
+
|
183
|
+
v2.9.5.
|
184
|
+
* Snow Leopard memory fix
|
185
|
+
|
186
|
+
v2.9.4.
|
187
|
+
* clamp size of data sent to server
|
188
|
+
* reset statistics for passenger when forking to avoid erroneous data
|
189
|
+
* fix problem deserializing errors from the server
|
190
|
+
* fix incompatibility with postgres introduced in 2.9.
|
191
|
+
|
192
|
+
v2.9.3.
|
193
|
+
* fix startup failure in Windows due to memory sampler
|
194
|
+
* add JRuby environment information
|
195
|
+
|
196
|
+
v2.9.2.
|
197
|
+
* change default apdex_t to 0.5 seconds
|
198
|
+
* fix bug in deployments introduced by multi_homed setting
|
199
|
+
* support overriding the log in the agent api
|
200
|
+
* fix JRuby problem using objectspace
|
201
|
+
* display custom parameters when looking at transactions in dev mode
|
202
|
+
* display count of sql statements on the list of transactions in dev mode
|
203
|
+
* fixes for merb--thanks to Carl Lerche
|
204
|
+
|
205
|
+
v2.9.1.
|
206
|
+
* add newrelic_ignore_apdex method to controller classes to allow
|
207
|
+
you to omit some actions from apdex statistics
|
208
|
+
* Add hook for Passenger shutdown events to get more timely shutdown
|
209
|
+
notices; this will help in more accurate memory readings in
|
210
|
+
Passenger
|
211
|
+
* add newrelic_notice_error to Object class
|
212
|
+
* optional ability to verify SSL certificates, note that this has some
|
213
|
+
performance and reliability implications
|
214
|
+
* support multi-homed host with multiple apps running on duplicate
|
215
|
+
ports
|
216
|
+
|
217
|
+
v2.9.0.
|
218
|
+
Noteworthy Enhancements
|
219
|
+
* give visibility to templates and partials in Rails 2.1 and later, in
|
220
|
+
dev mode and production
|
221
|
+
* change active record metrics to capture statistics in adapter log()
|
222
|
+
call, resulting in lower overhead and improved visibility into
|
223
|
+
different DB operations; only AR operations that are not hitting the
|
224
|
+
query cache will be measured to avoid overhead
|
225
|
+
* added mongrel_rpm to the gem, a standalone daemon listening for custom
|
226
|
+
metric values sent from local processes (experimental); do mongrel_rpm
|
227
|
+
--help
|
228
|
+
* add API for system monitoring daemons (refer to KB articles); changed
|
229
|
+
API for manual starting of the agent; refer to
|
230
|
+
NewRelic::Agent.manual_start for details
|
231
|
+
* do certificate verification on ssl connections to
|
232
|
+
collector.newrelic.com
|
233
|
+
* support instances appearing in more than one application by allowing a
|
234
|
+
semicolon separated list of names for the newrelic.yml app_name
|
235
|
+
setting.
|
236
|
+
* combined agent logfiles into a single logfile
|
237
|
+
* use rpm server time for transaction traces rather than agent time
|
238
|
+
|
239
|
+
Developer Mode (only) Enhancements
|
240
|
+
* show partial rendering in traces
|
241
|
+
* improved formatting of metric names in traces
|
242
|
+
* added number of queries to transactions in the transaction list
|
243
|
+
* added some sorting options for the transaction list
|
244
|
+
* added a page showing the list of active threads
|
245
|
+
|
246
|
+
Compatibility Enhancements
|
247
|
+
* ruby 1.9.1 compatibility
|
248
|
+
* support concurrency when determining busy times, for 2.2 compatibility
|
249
|
+
* in jruby, use Java used heap for memory sampling if the system memory
|
250
|
+
is not accessible from an unsupported platform
|
251
|
+
* jruby will no longer start the agent now when running the console or
|
252
|
+
rake tasks
|
253
|
+
* API support for RPM as a footnote add-in
|
254
|
+
* webrick support restored
|
255
|
+
|
256
|
+
Noteworthy bugfixes
|
257
|
+
* sample memory on linux by reading /proc/#{$$}/status file
|
258
|
+
* fixed ambiguous 'View' metrics showing up in controller breakdown
|
259
|
+
* removed Numeric extensions, including round_to, and to_ms
|
260
|
+
* using a different timeout mechanism when we post data to RPM
|
261
|
+
* remove usage of Rails::Info which had a side effect of enabling
|
262
|
+
ActiveRecord even when it wasn't an active framework
|
263
|
+
* moved CPU sampler off background thread and onto the harvest thread
|
264
|
+
* tests now run cleanly in any rails app using test:newrelic or
|
265
|
+
test:plugins
|
266
|
+
|
267
|
+
Agent improvements to support future RPM enhancements
|
268
|
+
* add instrumentation to capture metrics on response codes; not yet
|
269
|
+
working in rails 2.3.*
|
270
|
+
* added http referer to traced errors
|
271
|
+
* capture gem requirements from rails
|
272
|
+
* capture cpu utilization adjusted for processor count
|
273
|
+
* transaction sampling
|
274
|
+
|
275
|
+
v2.8.10.
|
276
|
+
* fix thin support with rails 2.3.2 when using script/server
|
277
|
+
* fix incompatibility with rails 2.3.2 and script/server options
|
278
|
+
processing
|
279
|
+
* minor tweak to environment gathering for gem mode
|
280
|
+
|
281
|
+
v2.8.9.
|
282
|
+
* fix problem finding the newrelic controller in dev mode
|
283
|
+
* fix incompatibility with older versions of optparse
|
284
|
+
* fix potential jvm problem with jruby
|
285
|
+
* remove test:all task definition to avoid conflicts
|
286
|
+
* change error message about window sampler in windows not supported to a
|
287
|
+
warning message
|
288
|
+
|
289
|
+
v2.8.8.
|
290
|
+
* fix error with jruby on windows
|
291
|
+
* fix problem where webrick was being incorrectly detected causing some
|
292
|
+
problems with mongrel application assignments--had to disable webrick
|
293
|
+
for now
|
294
|
+
|
295
|
+
v2.8.7.
|
296
|
+
* fix for ssl connection hanging problems
|
297
|
+
* fix problem recognizing mongrel in rails 2.3.2
|
298
|
+
* fastcgi support in rails 2.3.2
|
299
|
+
* put back webrick support
|
300
|
+
|
301
|
+
v2.8.6.
|
302
|
+
* fix for capture_params when using file uploads in controller actions
|
303
|
+
* use pure ruby NS lookup for collector host to eliminate possibly
|
304
|
+
blocking applications
|
305
|
+
|
306
|
+
v2.8.5.
|
307
|
+
* fix reference to CommandError which was breaking some cap scripts
|
308
|
+
* fix incompatibility with Rails 2.0 in the server API
|
309
|
+
* fix problem with litespeed with Lite accounts
|
310
|
+
* fix problem when ActiveRecord is disabled
|
311
|
+
* moved merb instrumentation to Merb::Controller instead of
|
312
|
+
AbstractController to address incompatibility with MailController
|
313
|
+
* fix problem in devmode displaying sql with embedded urls
|
314
|
+
|
315
|
+
v2.8.4.
|
316
|
+
* fix bug in capistrano recipe causing cap commands to fail with error
|
317
|
+
about not finding Version class
|
318
|
+
|
319
|
+
v2.8.3.
|
320
|
+
* refactor unit tests so they will run in a generic rails environment
|
321
|
+
* require classes in advance to avoid autoloading. this is to address
|
322
|
+
incompatibilities with desert as well as more flexibility in gem
|
323
|
+
initialization
|
324
|
+
* fixed newrelic_helper.rb 1.9 incompatibility
|
325
|
+
|
326
|
+
v2.8.2.
|
327
|
+
* fix Ruby 1.9 syntax compatibility errors
|
328
|
+
* update the class loading sanity check, will notify server of errors
|
329
|
+
* fix agent output on script and rake task execution
|
330
|
+
|
331
|
+
v2.8.1.
|
332
|
+
* Convert the deployment information upload script to an executable and
|
333
|
+
put in the bin directory. When installed as a gem this command is
|
334
|
+
symlinked to /usr/bin. Usage: newrelic_cmd deployments --help
|
335
|
+
* Fix issue invoking api when host is not set in newrelic.yml
|
336
|
+
* Fix deployments api so it will work from a gem
|
337
|
+
* Fix thin incompatibility in developer mode
|
338
|
+
|
339
|
+
v2.8.0.
|
340
|
+
* add beta of api in new_relic_api.rb
|
341
|
+
* instrumented dynamic finders in ActiveRecord
|
342
|
+
* preliminary support for capturing deployment information via capistrano
|
343
|
+
* change memory sampler for solaris to use /usr/bin/ps
|
344
|
+
* allow ERB in newrelic.yml file
|
345
|
+
* merged support for merb into this version
|
346
|
+
* fix incompatibility in the developer mode with the safe_erb plugin
|
347
|
+
* fix module namespace issue causing an error accessing
|
348
|
+
NewRelic::Instrumentation modules
|
349
|
+
* fix issue where the agent sometimes failed to start up if there was a
|
350
|
+
transient network problem
|
351
|
+
* fix IgnoreSilentlyException message
|
352
|
+
|
353
|
+
v2.7.4.
|
354
|
+
* fix error when trying to serialize some kinds of Enumerable objects
|
355
|
+
* added extra debug logging
|
356
|
+
* added app_name to app mapping
|
357
|
+
|
358
|
+
v2.7.3.
|
359
|
+
* fix compatibility issue with 1.8.5 causing error with Dir.glob
|
360
|
+
|
361
|
+
v2.7.2.
|
362
|
+
* fix problem with passenger edge not being a detected environment
|
363
|
+
|
364
|
+
v2.7.1.
|
365
|
+
* fix problem with skipped dispatcher instrumentation
|
366
|
+
|
367
|
+
v2.7.0.
|
368
|
+
* Repackage to support both plugin and Gem installation
|
369
|
+
* Support passenger/litespeed/jruby application naming
|
370
|
+
* Update method for calculating dispatcher queue time
|
371
|
+
* Show stack traces in RPM Transaction Traces
|
372
|
+
* Capture error source for TemplateErrors
|
373
|
+
* Clean up error stack traces.
|
374
|
+
* Support query plans from postgres
|
375
|
+
* Performance tuning
|
376
|
+
* bugfixes
|
377
|
+
|
378
|
+
v2.5.3.
|
379
|
+
* fix error in transaction tracing causing traces not to show up
|
380
|
+
|
381
|
+
v2.5.2.
|
382
|
+
* fixes for postgres explain plan support
|
383
|
+
|
384
|
+
v2.5.1.
|
385
|
+
* bugfixes
|
386
|
+
|
387
|
+
v2.5.0.
|
388
|
+
* add agent support for rpm 1.1 features
|
389
|
+
* Fix regression error with thin support
|
390
|
+
|
391
|
+
v2.4.3.
|
392
|
+
* added 'newrelic_ignore' controller class method with :except and :only options for finer grained control
|
393
|
+
over the blocking of instrumentation in controllers.
|
394
|
+
* bugfixes
|
395
|
+
|
396
|
+
v2.4.2.
|
397
|
+
* error reporting in early access
|
398
|
+
|
399
|
+
v2.4.1.
|
400
|
+
* bugfix: initializing developer mode
|
401
|
+
|
402
|
+
v2.4.0.
|
403
|
+
* Beta support for LiteSpeed and Passenger
|
404
|
+
|
405
|
+
v2.3.7.
|
406
|
+
* bugfixes
|
407
|
+
|
408
|
+
v2.3.6.
|
409
|
+
* bugfixes
|
410
|
+
|
411
|
+
v2.3.5.
|
412
|
+
* bugfixes: pie chart data, rails 1.1 compability
|
413
|
+
|
414
|
+
v2.3.4.
|
415
|
+
* bugfix
|
416
|
+
|
417
|
+
v2.3.3.
|
418
|
+
* bugfix for non-mysql databases
|
419
|
+
|
420
|
+
v2.3.2.
|
421
|
+
* bugfixes
|
422
|
+
* Add enhancement for Transaction Traces early access feature
|
423
|
+
|
424
|
+
v2.3.1.
|
425
|
+
* bugfixes
|
426
|
+
|
427
|
+
v2.3.0.
|
428
|
+
+ Add support for Transaction Traces early access feature
|
429
|
+
|
430
|
+
v2.2.2.
|
431
|
+
* bugfixes
|
432
|
+
|
433
|
+
v2.2.1.
|
434
|
+
+ Add rails 2.1 support for Developer Mode
|
435
|
+
+ Changes to memory sampler: Add support for JRuby and fix Solaris support.
|
436
|
+
* Stop catching exceptions and start catching StandardError; other exception cleanup
|
437
|
+
* Add protective exception catching to the stats engine
|
438
|
+
* Improved support for thin domain sockets
|
439
|
+
* Support JRuby environments
|
440
|
+
|
441
|
+
v2.1.6.
|
442
|
+
* bugfixes
|
443
|
+
|
444
|
+
v2.1.5.
|
445
|
+
* bugfixes
|
446
|
+
|
447
|
+
v2.1.4.
|
448
|
+
* bugfixes
|
449
|
+
|
450
|
+
v2.1.3.
|
451
|
+
* bugfixes
|
452
|
+
|
453
|
+
v2.1.2.
|
454
|
+
* bugfixes
|
455
|
+
|
456
|
+
v2.1.1.
|
457
|
+
* bugfixes
|
458
|
+
|
459
|
+
v2.1.0.
|
460
|
+
* release for private beta
|
461
|
+
|
462
|
+
|