-
Updated the default value for
transaction_tracer.record_sql
toobfuscated
.This value was previously
off
by default. This change brings the New Relic Node Agent defaults in line with other New Relic Agents. -
Our when instrumentation better detects when a module is actually
when
.Thanks to Pasi Eronen (@pasieronen) for the contribution!
-
Quiet a warning in our native promise instrumentation on Node 0.10.
-
Error messages are redacted in High Security Mode now.
-
New configurations were added for disabling some New Relic API methods. These default to enabled and are all disabled in High Security Mode.
api.custom_parameters_enabled
controlsnewrelic.addCustomParameters()
api.custom_events_enabled
controlsnewrelic.recordCustomEvent()
api.notice_error_enabled
controlsnewrelic.noticeError()
-
Fixed a bug in the generic pool instrumentation affecting version 3.
-
When.js hooks similar to
Promise.onPotentiallyUnhandledRejection
now function as intended.Previously, hooks like
Promise.onPotentiallyUnhandledRejection
would not work due to the way the agent wraps the promise constructor. When.js expects these handles to be assigned directly onto the promise constructor, and our wrapper was intercepting the assignment. The wrapper will now properly proxy these values and assign them onto the original constructor, restoring the proper behavior. -
Express route parameters will now be properly attached to the corresponding transaction.
Previously, our express instrumentation would read the route parameters and place them on the segment responsible for matching the parameters. This behavior did not place the parameters on the transaction that the segments belonged to, causing the parameters to not show up properly on transaction traces and transaction events.
-
Fixed issue with when.js instrumentation not preserving all properties on wrapped Promise constructor.
Previously, the when.js instrumentation would cause an unhandled exception when private methods on the Promise constructor were called (e.g. when adapting functions that do not use promises).
-
We're excited to announce the addition of a new Node VMs page to the UI that provides a curated view of the cpu, memory, garbage collection, and event loop metrics that we have added over the past several releases of the node agent and native-metrics module.
For more information, see our documentation.
-
Added instrumentation of When.js promise library.
Previously, the transaction state could get lost when multiple promises resolved close to each other.
-
Fixed name of environment variable in error message when configuration file cannot be found. Thanks to @Maubic for the contribution!
-
Updated tests to work with the latest version of Node 7.
-
Agent now wraps
emit
on http request/response objects instead of relying on listeners. -
Fixed a bug in normalization rules when replacements do not maintain initial
/
. -
Removed unused
yakaa
dependency. -
Better de-duplication of errors when the same error instance is used multiple times.
-
Server-side naming rules are now applied even when user defined ones have matched.
-
Improved documentation for
newrelic.noticeError()
andignore_status_codes
configuration.The documentation now makes it clear that errors recorded using
noticeError()
do not obey theignore_status_codes
configuration value. -
Errors reported outside of a transaction now include their stack trace on the error analytics page.
-
A potential stack overflow in trace serialization has been removed.
-
Fixed an issue with our Express and domain instrumentation related to a loss of transaction state that could result in incorrect transaction names, traces, and events.
-
Nested background transactions now report the correct number of metrics.
-
The agent now reports event loop metrics on supported platforms.
On node versions 0.12, 4, 6, and 7 the agent will now record the number of event loop ticks per minute, and CPU time spent in each tick. You can read more about it on our docs site!
-
The agent no longer creates a segment for each row returned from a PG query when the pg-query-stream module is used.
-
Removed io.js from our test suite, since it has not been supported for some time.
-
Internal properties used in our promise instrumentation are now non-enumerable to prevent unexpected keys showing up for clients.
-
Agent now uses safe stringification when encoding payloads in order to prevent an issue with circular references.
-
Fixed issue with the agent holding the process open when retrying to connect to the collector.
-
Quieted a log message warning users about their own settings.
-
Fixed typo in a log message. Thanks to Dave Bobak (@davebobak) for the contribution.
-
Fixed issue with timing Redis operations when called without a callback.
Previously these operations would continue to be timed until the transaction ended, and as a result reported incorrect times.
-
Transactions that result in a 404 HTTP error are now named "(not found)".
Previously these transactions were reported with no name (e.g. get /).
-
When the newrelic.js configuration file is not present, the agent now logs a message to the console and no longer prevents the app from starting up.
-
Stop collecting URL parameters from the HTTP referer header
The Node agent collects the request headers during an error trace to help determine the root cause of problems. The referer header is the URI that identifies the address of the webpage that linked to the resource being requested. It is possible that the referer URI may contain sensitive information in the request query parameters. New Relic has found that the query parameters are not properly stripped during the error trace. This update fixes this by stripping the query parameters from the referer in the request header before sending this data to New Relic.
This release fixes New Relic Security Bulletin NR17-01.
-
Improved logging of modules that did not get instrumented.
-
Added CPU metric gathering to Node.js versions <6.1
As of this release the agent will attempt to gather CPU usage metrics via the optional
@newrelic/native-metrics
module. -
Added additional memory usage classification metrics.
The agent will now report memory metrics that break down memory by its current use.
For more information on these features, see our documentation.
-
Removed automatic installation of
@newrelic/native-metrics
.Due to the way npm v3+ flatten dependencies, a bug in the version of npm packaged with Node v5, and npm v1's ungraceful handling of scoped packages we have opted to not automatically install this module.
If you would like to see native metrics for your application, you can add the
@newrelic/native-metrics
module to yourpackage.json
and the Node Agent will automatically pick it up. -
Corrected attribution of the Bluebird patch in the last release's notes.
Thanks to Matt Lavin (@mdlavin) for this correction!
-
The agent will now report garbage collection statistics on supported platforms.
On node versions 0.10, 0.12, 4, 6, and 7 the agent will now record the time spent in, the number of, and type of garbage collection cycles. You can read more about it on our docs site!
-
The agent no longer double counts MySQL query times when using a connection pool.
Previously, when using a pool of connections a query done through the pool would be recorded as the time it took on the pool, as well as the connection, effectively counting the time twice. This is no longer the case.
-
The agent will no longer lose transaction state across Bluebird's
promise.nodify
.Thanks to Matt Lavin (@mdlavin) for this contribution!
-
The agent now collects CPU metrics when running under Node 6.1.0 and higher.
Node 6.1.0 introduced an API to get CPU time usage of the running Node process. We are now collecting this data as new metrics.
-
The agent now has a separate configuration for audit logging.
Previously the data that the agent sends to the collector was logged only in trace logging mode, making the logs unnecessarily large and noisy. The agent can now include this data independent of the logging level using separate configuration settings.
-
A new API method addCustomParameters() has been added to allow adding multiple custom parameters at once. Thanks to Austin Peterson (@AKPWebDesign) for this contribution!
-
The shutdown() API now waits for connection to collect pending data.
When a flag to collect pending data is provided to the shutdown() method, the agent now ensures a connection to the collector has been established. This is useful when the Node process is short-lived, such as in AWS Lambda.
-
Updated tests to run on Node 7.
Node 7 is officially supported as of the previous release, v1.33.0.
-
The setIgnoreTransaction() API now works for background transactions.
-
Fixed issue with Synthetics result not displaying a link to the corresponding transaction trace.
-
Added running the nsp (Node Security Platform) tool to the test suite to help with detecting security-related vulnerabilities.
-
The agent now collects database instance information for Memcached operations. This information (database server and database name) is displayed in transaction traces and slow query traces.
-
socket.io long-polling requests are now ignored by default.
Collecting metrics for these requests is typically not desirable since they are frequent and do not represent business transactions. Previously we recommended adding an ignore rule manually. Now it is included by default.
-
Improved test coverage for Postgres and MongoDB instrumentations.
-
The agent now collects database instance information for MySQL and MongoDB operations. This information (database server and database name) is displayed in transaction traces and slow query traces.
-
Datastore instance configuration can now be done through environment variables. These can be set through
NEW_RELIC_DATASTORE_INSTANCE_REPORTING_ENABLED
andNEW_RELIC_DATASTORE_DATABASE_NAME_REPORTING_ENABLED
-
The agent will no longer crash the process when an express param handler is executed when a transaction is not active.
- The agent now collects database instance information for PostgreSQL and Redis operations. This information (database server and database name) is displayed in transaction traces and slow query traces.
-
Fixed issue with aborted requests causing the agent to crash in some cases.
Previously the agent would crash when the client request aborted before Express server sent a response and encountered an error.
-
Upgraded integration tests to work with the latest version of node-tap.
-
Improved instrumentation of native promises.
Native promises now use the same instrumentation as Bluebird, making instrumentation easier to maintain and more consistent across libraries.
-
Fixed issue with reloading normalization rules from the server.
Upon reset, the agent will clear the existing naming rules, removing any vestigial rules that may have changed or been disabled.
-
Fixed issue with key transactions Apdex metric.
Key transactions now effect the global Apdex metric according to their own ApdexT instead of the default ApdexT value.
-
Fixed issue with closing transactions when the request is aborted.
Previously, aborted requests would result in the transaction remaining open indefinitely. Now the transaction will be correctly finished and its resources freed.
-
Fixed format of external calls metric.
External service URLs will now be formatted the same as they are in the originating application.
- Published with npm v2.
-
Added instrumentation of the param() function in Express.
The agent will now create metrics and transaction segments when the Express param() function is called as a part of a route. This also fixes an issue with transaction naming when the HTTP response is ended within a param() method.
-
Fixed an issue with naming Express transactions that result in 404 errors.
Previously transactions were not always correctly normalized for URLs that caused 404 errors. The transactions will now always be reported with the same normalized name (e.g. "get /").
-
Fixed instrumentation of Express v4.0 - v4.5.
Previously transactions were not correctly named on older versions of Express 4.
-
Minor upates to logging.
-
The
shutdown
method is now on the stub API.Previously when the agent was disabled the stub API passed back on require did not have the
shutdown
method. Thanks goes to Vlad Fedosov (@StyleT) for this contribution! -
Global timers will now be wrapped correctly regardless of being wrapped by something else.
The logic to check whether to wrap the
global
timers was looking to see if theglobal
timers were the same function reference as the ones in thetimers
module. This would break in cases where either theglobal
ortimers
functions had been wrapped. -
Director instrumentation now correctly handles the case of null route handlers being passed in.
Previously the agent's director instrumentation would crash in cases of null route handlers in director.
-
A number of improvements and fixes to transaction naming rules.
Added attributes
terminate_chain
,replace_all
, andprecedence
to allow more control over how naming rules are executed. Please see the updated documentation in our README file.The order in which naming rules are executed can now be reversed with a feature flag
reverse_naming_rules
.When applying naming rules, the regular expression matching is now case insensitive.
We have added a tool for testing naming rules. When the agent is installed, the tool can be run in terminal by executing
node node_modules/.bin/newrelic-naming-rules
.We have also improved our trace logging around transaction naming.
-
Fixed issue with reporting errors from domains.
When an error is handled by using the
error
event of the domain, it is no longer reported as an uncaught exception. -
Added trace logging to track number of transactions and segments in progress, and to better track segments created with the Express instrumentation.
-
Fixed mysql2 tests that were not being run correctly.
-
Reworked the SQL parser to handle new lines in the query.
Previously the agent would have difficulty classifying queries with new lines in them. Thanks to Libin Lu (@evollu) for the fix!
-
Postgres instrumentation is now compatible with inputs with text getter attributes.
Thanks again to Libin Lu (@evollu) for the fix!
-
Domain error handlers will now be scoped to the transaction the error occurred in.
Previously, the
'error'
event handlers would not be scoped to a transaction causing our API methods to not associate data correctly (e.g. usingnoticeError
would not associate the error with the transaction and would instead be unscoped).
-
Removed excessive segment creation from PG instrumentation.
For queries with many results we would create a segment for each result. This would result in excessive object allocation and then cause harsh GC thrashing.
-
Improved agent startup speed by ~10% by simplifying environment checks.
Removed prolific
fs.exists
andfs.stat
checks, instead simply handling the error for mis-used files which greatly reduces disk access. -
Fixed a bug in agent connect that could cause an identity crisis under specific use cases.
When using the agent with multiple app names, transaction information could be misattributed to other services if they share the same first app name. This resolves that by using all of the host names to uniquely identify the agent.
-
Added slightly more trace-level logging around the creation of segments.
-
Added examples for using the
newrelic.createBackgroundTransaction
method in a number of different use cases.
-
Director instrumentation that will now name the transaction correctly, as well as create segments corresponding to the handlers registered with director.
-
Transaction naming refactor - this should clear up some inconsistent naming issues in our router instrumentations.
Previously the instrumentation was tasked with the maintenance of the transaction state name, now this has been abstracted into its own class to be used by instrumentations.
-
Express instrumentation refactored to scope transaction storage to the incoming request object.
Previously the express instrumentation used a stack to track which router was expecting middleware to finish and keep track of which transaction is being executed. The new implementation has a stronger guarantee on scoping work to the correct transaction.
-
The agent now uses the correct units for slow queries - this fixes and issue where query traces in the databases tab were slower than the reported maximum.
-
The following attributes are now sent to Insights along with transaction events: databaseDuration, databaseCallCount.
-
Fixed a few issues with the Express instrumentation.
Middleware functions mounted with a path variable now generate the correct middleware metrics. Routers mounted using route methods now generate the correct trace segments and times. Routers mounted on root path are now not included in trace when they contain no matching routes.
-
Updated Redis instrumentation to work with version 2.x of the redis module.
-
Improvements to error tracking on systems that have a lot of errors.
-
Other minor changes to tests and logging.
-
Express middleware metrics are now enabled by default.
-
The following attributes are now sent to Insights along with transaction events: externalDuration, externalCallCount, and queueDuration.
-
Custom SSL certificates (from the agent configuration) are now used even when a proxy is not explicitly defined. This is useful in some environments that use an implicit proxy for all network traffic.
-
Fixed duplicated external transactions for
https
requests in Node > 0.10.Any external transaction that used the
https
module to make the request would appear twice in transaction traces due tohttps.request
internally usinghttp.request
. This has now been resolved. -
Updated eslint dev dependency to 2.9.0 (was 0.24.1).
-
Fixed an issue with transaction naming precedence.
Custom naming of transactions will no longer be replaced by names generated by the instrumentation.
-
Fixed tests which broke under Node 6.0.
Node 6.0.0 changed some messaging and internal functionality which our tests were asserting on. These tests have been updated to work with either the new version or the older ones.
-
Fixed installing GCC 5 in Travis for testing native modules in Node >= 3.0.
Starting in Node 3.0, native modules were compiled with C++11 features enabled. The version of GCC preinstalled on Travis was too old to support that so we now manually install GCC 5 and set it as the system compiler.
-
Fixed metrics that were being scoped to themselves.
Some metrics were scoped to themselves causing a strange visual glitch in the RPM UI. This self-scoping has been removed.
-
Added tests for transaction naming with parallel requests in Express.
-
Fixed issue with checking listener count for uncaughtException and unhandledRejection global events.
-
Fixed a number of issues with promise instrumentation of Bluebird.
-
Added a .npmignore file to exclude non-essential files.
The agent will now omit tests and examples on install from npm, drastically improving download times. Thanks to Serge Havas (@Sinewyk) for the contribution!
-
The agent now properly checks for custom SSL certificates.
The check previously was falsely positive if there was an empty list of custom certificates. This caused red herrings to be admitted into the debug logs. Thanks to Seth Shober (@sethshober) for the fix!
-
Reworked promise instrumentation to be more reliable and reusable.
Promise instrumentation has been rewritten to be applicable to any A+ compliant promise library. This change brings more consistent instrumentation of Bluebird promises.
This change also allows users to see the execution order of chained promises in their Transaction Traces. This is an opt-in process and can be achieved by setting
feature_flag.promise_segments
to true in the agent config. -
Promise error handling is now more consistent.
Previously the agent would notice errors being emitted on 'unhandledRejection' regardless of other listeners. Errors coming in on the 'unhandledRejection' event will not be recorded if there are handlers for the event - this is more in line with our error handling practices in other instrumentations.
-
Logging has been reworked to reduce CPU overhead.
The check to see if a logging call was valid happened fairly late in the logic, causing unnecessary work to be done regardless of logger state. This has been rectified, netting a large decrease in CPU overhead.
-
Added ioredis instrumentation.
Big thanks to Guilherme Souza (@guilhermef) for the contribution!
-
Added a new shutdown call to the public API.
Thanks to @echmykhun for the contribution!
The new shutdown API call will gracefully stop the agent. It can optionally harvest any pending data waiting to be sent to the New Relic servers before shutting down.
To read more about this new API, please read our README, or visit our docs page.
-
Fixed an issue in the express instrumentation related to inactive/lost transaction state.
Thanks to Jacob Page (@DullReferenceException) for submitting this fix.
Previously, the agent would crash if there was no active transaction when an Express middleware would handle the request.
-
Added support for truncated segment notifiers.
Segments related to work that happens after a transaction has finished will now be labeled as Truncated in the UI.
-
The agent now uses MongoDB's APM API for its instrumentation.
Method discovery for instrumentation is now done through MongoDB's APM API in newer versions of the MongoDB driver.
-
Added capturing errors from the unhandledRejection global event.
If a promise is rejected with an error, and the error is not handled, the error will now be reported to New Relic.
-
Fixed issue with attaching an event handler every time Express was required.
-
Fixed issue with chained promises losing context.
Previously the transaction state was getting lost when an error was thrown early in a promise chain.
-
Fixed issue with the agent crashing when an http Server did not have the address() getter.
-
Fixed issue with Express instrumentation when a wrapped layer object was missing a method.
-
Added more logging around the CAT feature.
-
Express instrumentation has been fundamentally reworked.
This refactor includes a few bug fixes around error handling and transaction naming, as well as optional higher resolution traces.
The agent will not report errors handled in an error handler it is monitoring - this is more in line with how the agent does error handling in other contexts.
The agent will now name transactions correctly when an application responds from a middleware.
Setting
feature_flag.express_segments
to true in the agent config will make the agent report the amount of time spent in each individual middleware per request
-
Added instrumentation of Bluebird promises.
Previously, the transaction state could get lost when multiple promises resolved close to each other.
-
Fixed issue with PostgreSQL native instrumentation.
Previously, calling
require('pg').native
more than once was causing the agent to crash. -
Fixed issue with hapi instrumentation not returning value from Server.connection().
-
Various improvements to tests to make them more stable.
-
Added more HTTP request/response parameters to transactions.
The agent now collects additional request/response HTTP headers (e.g. contentType, HTTP method, response status code). These can be used to filter and group errors in the Error analytics page, as well as events in Insights.
-
Fixed an issue with collecting errors when an Express error handler removed message and stack properties from the error object.
-
Fixed crashing bug on unhandled rejections in Q.
Previously, the agent would cause the process to crash in the event of an unhandled rejection.
Thanks to @mdlavin for this fix!
-
Added Q instrumentation.
The node agent now accurately records programs using Q for promises.
Thanks to @mdlavin for the contribution!
-
Added node-mysql2 support.
Thanks to @jhollingworth for adding node-mysql2 support to the agent.
-
Query streaming in node-mysql now works while using the agent.
Previously, due to the way node-mysql was instrumented query streaming would be forced off when the agent was collecting data. This is no longer the case and query streaming will work and be recorded as expected.
-
Corrected an issue where the agent would sometimes crash looking up the port of the HTTP server that a request came from.
Previously, the agent assumed the HTTP server would always have an address, unfortunately this isn't the case if the HTTP server's
.close()
has been called.
-
Added support for the new Response Time Line and better representation of asynchronous data.
This has many implications in the UI. The first is the Application Overview, in the past we've always just shown "node" and maybe "request queueing" on the response time graph. We now show you an application breakdown like our other language agents! This means you'll be able to see how much time was in HTTP externals, your various datastores, or spent in node itself. Overlaid on this will be your response time as a blue line.
Next page that has been affected is our Transaction Overview page. Specifically when you click into a Transaction to see more detail. Previously we showed you a breakdown of the top time consumers in that transaction, both as a graph and as a table. Unfortunately that graph didn't show response time and the table would show percentages over 100%. Now, like the Application Overview, you will get a blue response time line and the breakdown table will have numbers that add up much more intuitively!
Finally, our Transaction Trace view has also been updated. The change is very similar to the changes mentioned above for the breakdown table in the Transaction Overview page. You should no longer see percentages over 100% here either.
-
Transaction trace serialization is now 4x faster than before.
This speedup will primarily affect those with large, deeply nested transactions. Though small transactions have seen some improvement as well.
-
Error totals are now reported.
The agent now reports metrics that reflect the total number of errors that have occurred in web and background transactions.
-
Disabling SSL no longer requires the setting of a port.
Previously, the agent required changing
port
in the config to80
when disabling SSL. The agent will now default to port 80 if a port is not supplied and SSL is turned off. -
Logging functions have been improved.
The agent will now properly log error stack traces and can rate limit logging messages. To aid in debugging we have provided more logging about the public API.
-
Advanced Analytics for APM Errors
With this release, the agent reports TransactionError events. These new events power the beta feature Advanced Analytics for APM Errors (apply here to participate). The error events are also available today through New Relic Insights.
Advanced Analytics for APM Errors lets you see all of your errors with granular detail, filter and group by any attribute to analyze them, and take action to resolve issues through collaboration.
-
NEW_RELIC_LOG_ENABLED
environment variable is now treated as a boolean.Previously, this option was treated as a string, causing it to not work for some use cases. Thanks to @jakecraige for contributing this fix!
-
newrelic.getBrowserTimingHeader()
API now includes the full transaction name.Previously, the agent would use a fragment of the transaction name, causing Browser Monitoring transactions and APM transactions to not be cross linked. This change makes the cross linking work correctly.
-
The New Relic Node Agent now officially supports Node v4!
We are excited to announce that the New Relic Node Agent officially supports Node v4.x! We've tested the agent across all major versions of Node used by New Relic customers to ensure a quality Node APM experience. New Relic recommends upgrading to Node v4.x for best Node Agent performance.
-
Corrected a parsing issue in the slow sql query parsing step.
Previously, the agent would not be able to parse inputs to database libraries that specified sql as an option param. This was an issue with node-mysql, namely. The agent now correctly handles this case and registers the queries as expected.
-
Removed client support of the RC4 stream cipher for communicating with the New Relic servers.
The RC4 cipher is considered unsafe and is generally being deprecated.
-
Fix for logging version number in Express instrumentation. Thanks @tregagnon.
When an unsupported version of Express is detected, we log a message that contains the Express version number. The version is a string and was being logged as a number, resulting in NaN in the log message.
-
Agent is now more safe when recording memory stats.
Previously, the agent would crash the process as it was gathering memory usage information (i.e. when process.memoryUsage threw an error). This defect is now guarded against with a try-catch.
-
Express and Connect instrumentation will no longer crash on Node 4
As of ES6, the
Function.name
attribute will track if the function is a getter/a setter/is bound to (i.e.fn.bind().name ->
'bound ' + fn.name
). This new behavior caused the agent to crash on start up due to the way connect and express are instrumented. The agent is now more defensive of future implementations of ES6.
-
Errors will now respect its transaction's ignore state.
When ignoring transactions, related errors will now also be ignored.
-
The agent can now handle immutable and frozen error objects.
In rare cases the agent gets passed an immutable error object. The agent would then crash when trying to tag the error object with the current transaction. We now handle these errors properly.
-
Corrected a defect in the handling of uncaught exceptions
This defect was surfaced in versions of node that did not have
process._fatalException
, namely v0.8. When an uncaught exception occurs, the agent now records the error and passes it along to the other uncaught exception handlers that have been registered. This was inverted before, passing along errors when there were no other error handlers present and rethrowing otherwise.
-
Moved
concat-stream
from dev dependencies to production dependencies.Last week we released v1.21.0 but forgot to move a dependency. We've removed v1.21.0 from npmjs.org and this release contains the changes from that version.
-
Added configurable host names.
The agent now has configuration settings to allow configuration of custom host names. Set
process_host.display_name
to enable this.If this conifig is not set, the agent will continue to use the host name found through an
os.hostname()
call. Should this lookup fail somehow,process_host.ipv_preference
can now be set to4
or6
to configure the type of ip address displayed in place of the host name.
-
Fixed a bug where custom events weren't being sent.
In a refactor of our data collection cycle, we omited the custom events from the list of commands, this is now fixed.
-
Fixed a very rare bug where the custom event pool could be set to 10 instead of the user config value. This patch was contributed by shezarkhani, thanks!
This case would only be hit if you disabled custom events via server sent config while there were custom events ready to be sent. Then you later reenabled it via server sent config. It would only occur for one data collection cycle then reset back to the correct size.
-
Fixed a bug in custom event recording limits.
Previously, the agent would use the config value for max events (default of 1000) for the first harvest of custom events, then would use an internal default for the reservoir with max of 10 events for each harvest after that, resulting in less than the expected number of events being sent.
-
Exposed the
custom_insights_events
settings in the user config.You can now set
custom_insights_events.enabled
andcustom_insights_events.max_samples_stored
in yournewrelic.js
.Read more about these settings in our documentation.
-
Triaged a defect in native promise instrumentation
Transactions used to be lost acrossed chained
.then
calls. The way promises are wrapped has been changed to fix this issue. -
Added support for Slow Queries
Slow Query information will now appear in the UI for Node agent users. This feature allows you to see a trace for slow datastore queries. Read more about this feature in our documentation
-
Fixed an issue with Error tracing
Previously the agent could sometimes cause issues with user serialization of error objects after they passed through the error tracing code.
-
MongoDB cursor count method is now instrumented
The
count
method on MongoDB cursors is now instrumented. Previously, count would not be included in transaction traces. -
Fixed a typo in NEWS.md
Previously the release notes for v1.19.1 were included as notes for 1.19.0. This has now fixed thanks to @bruun
-
Fixed a bug in native ES6 Promise instrumentation.
Previously the Promise instrumentation would cause
instanceof Promise
to return false even if the object was a promise. This also caused an incompatibility with async-listener.instanceof
checks will now work on both the wrapped and unwrapped Promise object.
-
Fixed a bug with error handling.
Previously the agent could crash applications in certain situations where
null
was thrown rather than anError
object. -
Filesystem interactions are now recorded in metrics
The time spent in filesystem functions during a transaction will now be displayed in the transaction overview page per operation.
-
Fixed a bug in environment variable based configuration.
Previously the agent would parse the
NEW_RELIC_APDEX
environment variable as a string rather than a float this could cause data to be sent to New Relic servers in an invalid format, preventing the data from being collected. -
Fixed a bug with the error collector's handling of ignored status codes.
Previously the agent would not properly ignore status codes if the status code was set using a string rather than a number.
-
Fixed a bug in mysql instrumentation.
Previously the mysql instrumentation could cause errors when making mysql queries using an options object rather than a SQL string. The agent now handles arguments to the query method in a more robust way.
-
Fixed an inverted
if
in config loading.Previously, the config loader would log a warning on success, rather than failure. Configuration loading works as expected now.
-
Fixed a bug in
process.nextTick
instrumentation for io.js 1.8.1.Previously the agent would only pass the callback argument to
process.nextTick
. This did not cause issues in Node.js and older version of io.js, since additional arguments were ignored. In a recent change to io.js,process.nextTick
was changed to pass any additional arguments to the callback, the same waysetImmediate
does. This change ensures all arguments are handled as expected.
-
Wrapped all our calls to
JSON.parse
in try/catch.Previously, only calls that were considered unsafe due to external data input were wrapped. We are taking a more defensive stance and wrapping them all now.
-
Timers attached to
global
are now instrumented correctly in all version of io.js.As of v1.6.3 of io.js, timers are no longer lazily loaded from the timers module, and are placed directly on the global object. The agent now takes this change into account and accurately wraps the timer methods.
-
Improved handling of cross-application tracing headers.
Paths that include multibyte characters will now show up correctly in cross application maps
-
Wrapped all our calls to
JSON.stringify
in try/catch.Previously, only calls that were considered unsafe due to external data input were wrapped. We are taking a more defensive stance and wrapping them all now.
-
Names assigned to errors via
Error.name
now appear in the UI.Previously, the name of an error in the UI appeared as
Error.constructor.name
or with a default ofError
. Now the common pattern ofError.name
is respected and takes precedence. -
Child segments of external calls will now be nested correctly.
This change causes segments that make up external calls to nest under the call correctly. Previously, the child segments appeared as siblings to external calls.
-
The
request_uri
attribute on errors will now only include the path without any parameters.This behavior now matches the other New Relic agents.
-
Reduce agent CPU overhead by omitting
setImmediate
from traces.The change to
setImmediate
makes that function behave the same way asnextTick
and other frequently-called functions that are already elided from Transaction Traces. -
Mitigate a Node.js memory leak that can occur during TLS connections.
There is an outstanding Node.js Core memory leak involving TLS connections. Clients specifying certificates, such as the New Relic Agent, quickly reveal this leak. We now mitigate this issue by using the default client certificates where possible. A new log message will be printed when the TLS memory leak workaround can not be used, such as when using a custom certificate with an HTTPS proxy.
-
Fixed a bug where external requests report times longer than the transactions that initiated them.
External request segments are now always ended when an error occurs.
-
Fixed a bug that produced incorrect transaction names for some routes in express2 and express3.
- Fixed a bug that interfered with listing the routes in Express apps.
- Fixed a bug that caused custom transaction names to appear as "unknown".
- Added more log detail when instrumentation fails to load.
- Added instrumentation support for Postgres 4.x.
- Added instrumentation support for Datastax's Cassandra driver.
- Updated Oracle instrumentation to collect new datastore metrics.
- Added instrumentation for modules in node core.
- Added support for native Promises in Node.js 0.12 and io.js 1.x.
- Traces will now contain separate segments for async waits and callbacks.
- Updated instrumentation for MongoDB to support previously un-instrumented methods for 1.x and 2.x versions of the node-mongodb-native driver.
- Fixed a bug in the recording of transaction metrics. Previously this would cause a duplicate of the transaction metric to be displayed in the transaction breakdown chart
- Fixed a bug in the logger to respect the configured log level in all cases.
-
Fixed a bug in hapi 8 view segments. Previously, the segments weren't being ended when the view ended.
-
Added a configuration option to completely disable logging.
logger.enabled
defaults to true, if set to false it wont try to create the log file.
-
Enable http/https proxy features on all supported Node versions.
Supported versions: Node.js 0.8, 0.10, 0.12 and io.js 1.x.
-
Fixed a bug in vhost detection in Hapi 8. This bug would result in a crash for users of vhosts.
-
Now New Relic Synthetics transaction tracing is on by default.
The previous release had the Synthetics transaction tracing feature turned off by default.
-
Added support for New Relic Synthetics transaction tracing.
New Relic Synthetics monitors your site from around the world. When you use Synthetics to monitor your Node application, up to 20 detailed transaction traces will now be captured every minute when the application is probed from Synthetics. To learn more about this feature, visit our documentation.
-
Preliminary Node.js 0.12 support.
HTTP proxies are not supported on 0.12 yet. We don't recommend running the Agent on Node.js 0.11.15+ in production, but if you are testing on it, please let us know of any issues you encounter.
- Added an API for recording custom Insights events. Read more about this in our documentation
-
Fixed a crash in express instrumentation in the handling of sub-routers.
-
Fixed a crash in http outbound connections when CAT is enabled and another library has frozen the http request headers.
-
Updated version checking to allow versions of the runtime >= 1.0.0. Thanks to Mark Stosberg for this patch!
-
The agent now logs the actual error when log file parsing fails. Thanks to knownasilya for this patch!
-
Fixed a crash where if domains were enabled config serialization would fail due to circular objects.
-
Errors that occur in background transactions now have custom parameters copied onto them in the same manner as web transactions.
-
Memcached instrumentation updated to account for additional arguments that might be passed to the command function that the agent wraps.
-
Custom web transactions can have their names changed by
nr.setTransactionName()
. Thanks to Matt Lavin for this patch! -
Fixed a bug where Express instrumentation could crash if transaction state was lost in a sub-router.
-
Improved the Express instrumentation to be more defensive before doing property lookups, fixing a crash that could happen in an exceptional state.
-
Improved logging when the New Relic agent cannot connect to New Relic servers.
-
Make Cross Application Tracer header injection less aggressive fixing interaction with other libraries such as riak-js.
-
Added support for Hapi v8.
-
briandela contributed a fix for an crash that would occur when using hapi with vhosts.
-
Fixed a bug that caused some outbound http requests to show up in the New Relic UI as requests to
localhost
rather than the specified domain. -
The agent no longer reports errors from outbound http requests if they were handled by the user's application
-
The node agent now instruments connections to Oracle Databases using the
oracle
driver. This patch was contributed by ryanwilliamquinn -
Fixed an issue that would break kraken apps when the node agent was enabled. This patch was contributed by Lenny Markus
- Added support for the the aggregate method on mongodb collections. This patch was contributed by taxilian
-
Fixed a bug in Cross Application Tracing where the agent would sometimes attempt to set a header after headers had already been sent.
-
Replaced the logger with one that is handles file writes properly lowering overall resource usage.
This is a small change with a large impact.
fs.createWriteStream
returns whether data was queued or not. If it is queued it is recommended to wait on adrain
event but this isn't manditory. Most loggers we've found ignore this event which leads to many writes getting buffered and a rapid increase in native heap size as well as lowering the process's ability to respond to requests.
-
Updated support for hapi 7.2 and higher.
Hapi refactored how the server is instantiated and caused the agent to not be able to get transaction names. This release accounts for the update and enables full instrumentation.
- This release was unpublished as it got packaged incorrectly.
-
Added support for Custom Metrics
Custom metrics provides a way to send additional metrics up to New Relic APM, which can be viewed with Custom Dashboards. We have two APIs for this, recordMetric(name, value) and incrementMetric(name[, value]). Read more about this in our docs: https://docs.newrelic.com/docs/agents/nodejs-agent/supported-features/nodejs-custom-metrics
-
Fixed a bug in deeply nested transactions.
Previously we allowed transactions to be nested to any depth. We've found in some cases this causes stack depth problems and are now limiting to 900 segments per transaction. We will still collect metrics on all segments, but transaction traces will only show the first 900.
-
Fixed a bug where custom tracers would show 0 time if the transaction ended n them.
This may change the times you see for other types of tracers by a small amount. The change will reflect slightly more accurate timing.
-
Fixed a bug that would cause the application to crash on outbound connections when using node 0.8.
-
Fixed a bug that could sometimes cause the application to crash while parsing MySQL queries.
-
Added support for Label Categories
The agent now supports setting Labels for your application on a per instance level, using either an environment variable, or a config file setting. https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/categories-rollups-organizing-your-apps-servers
-
Improved transaction names for express 4
express 4 added the ability to mount apps and routers at specific urls. The node agent would previously use only the portion of the route that was the last router or app matched as the transaction name. Transaction names will now include the entire matched route.
-
Added detection for uninstrumented instances of modules that should be instrumented
The agent will now detect if an application has required a module before
require('newrelic')
.If this occurs, the agent will add a warning in the log file and display a warning banner in the UI. -
Added more logging to custom instrumentation APIs at
debug
level.The logging was improved for the benefit of people using the following APIs:
createTracer
,createWebTransaction
,createBackgroundTransaction
, andendTransaction
. It will log when transactions are created and when transactions are ended. It will also log when it can't create a tracer due to there being no active transaction. -
Fixed a bug in QL instrumentation where the event emitter from
query
could not chain.on
calls. This patch was contributed by sebastianhoitz. -
Fixed a bug in
createBackgroundTransaction
where if the agent was disabled it didn't take agroup
argument. This patch was contributed by nullvariable. -
Fixed a bug in our URL parsing where in Node v0.11.14
url.parse
returns a differently shaped object than expected. This patch was contributed by atomanticNote: Node v0.11.x is not officially supported, but Node v0.12 will be and this patch helps us get ready for that.
-
Added support for Cross Application Tracing
The agent now supports Cross Application Tracing, which allows the New Relic APM UI to display traces that span multiple applications. https://docs.newrelic.com/docs/apm/traces/cross-application-traces/cross-application-traces
-
Fixed a bug that would cause application to crash on request when using the kraken framework.
-
Loosened the restrictions on the
app_name
setting. Application names may now include any Unicode characters.
-
Fixed a type error while checking the payload size to be sent to the New Relic servers.
When this happened the agent would fail to send the payload to New Relic. This was more likely to occur in higher throughput applications.
- Fixed a bug where mutibyte characters would cause an error when sending data to the New Relic servers.
-
Updated hapi instrumentation to support the recently released v6.9.
-
Fixed a bug where an invalid package.json could cause the agent to crash while it recursed through
node_modules
gathering version details. -
Properly name
other
SQL queries.Previously when the agent failed to parse SQL it would create a metric stating the database type, query type, and query table were all unknown. This has been changed to keep track of database type and create an appropriate
other
operation metric like other agents.
-
Custom Instrumentation functions now pass through the return value of their passed in callback.
-
Multiple improvements to PostgreSQL instrumentation
When no callback was detected in the query functions, we were inserting our own. The insertion itself caused a crash. Adding a callback also modified the behavior of the pg module. Instead, we now listen for
error
orend
events to finish segments.We now generate metrics for statement type/table combinations. Look for these in the database tab your APM Account!
-
Improved MongoDB find instrumentation.
The
mongo
driver provides many different ways to invoke its API and find documents. In previous releases, some API invocations would create transaction trace segments that would not end properly, leading to inaccurately large segment times. This release now covers all the ways to find and iterate through documents, ensuring segment times are accurate.
-
We now support PostgreSQL via the
pg
driver.The Node.js agent now records the amount of time spent in transactions with PostgreSQL databases. This timing can be viewed in the Transactions dashboard within individual transactions and their traces.
The agent supports all of the following
pg
usage scenarios:- Using the pure javascript API exposed directly from
pg
- Using the "native" API exposed from
pg.native
- Using the "native" API exposed directly from
pg
when theNODE_PG_FORCE_NATIVE
environment variable is set - Using the pure javascript API from the
pg.js
module
- Using the pure javascript API exposed directly from
- Removed a preemptive DNS lookup of the New Relic servers that could cause errors when behind a proxy.
-
Fix to prevent proxy credentials transmission
This update prevents proxy credentials set in the agent config file from being transmitted to New Relic.
-
MySQL Pooling Support
Better support for mysql pooling, including connections that use
createPoolCluster
andcreatePool
. Previously connections obtained through a pool could potentially be uninstrumented.
-
Custom instrumentation
The agent now supports the ability to annotate application code to provide customized instrumentation. This includes the ability to time both web and background transactions, and add tracers to measure activity within transactions like querying a database. Documentation available at https://docs.newrelic.com/docs/agents/nodejs-agent/supported-features/nodejs-custom-instrumentation
- Fixed a bug in the express instrumentation where if you named an error handler
function
handle
it would cause a recursion depth error.
-
Added a check for invalid characters in the
app_name
setting.The agent will now emit a warning and disable itself if any application name is invalid. Allowed characters are alphanumerics and certain punctuation characters ({}.?!')
-
Router queue time now properly handles floating point values.
-
Fixed a bug where a socket connection could throw a synchronous error and cause the application to crash.
-
We now support Cassandra via the
node-cassandra-cql
driver.New database instrumentation means that we can present you with the timing data for how long those queries take. Thanks to Aaron Silvas from GoDaddy for the initial implementation of the Cassandra instrumentation.
-
Router queue time now supports
t=<number>
in the X-REQUEST-START and X-QUEUE-START headers.
- Agent now tracks metrics for router queue time. In addition to X-REQUEST-START, the agent now supports X-QUEUE-START header times. This metric will show up as "Request Queueing" in the Overview tab.
- General release of proxy support for the agent to connect to New Relic.
- HTTP/HTTPS support from the
newrelic
module to the proxy - HTTP/HTTPS support from the
newrelic
module to New Relic. - Basic proxy authentication.
- Allow custom certificates during TLS negotiation.
- For more information, read our docs here
- HTTP/HTTPS support from the
- Fix for enabling High Security Mode via an environment variable
- Optimization to allow early garbage collection of TLS slab buffers.
-
Plain
http
routes (i.e. routes outside of a framework) now apply config naming rules early. See rules for naming and ignoring requests.This fixes a bug where generating the Browser Timing Header would not work without a framework (i.e. express, restify, hapi).
-
Beta support for connecting to newrelic via ssl through a proxy. See issue 128 for details.
- The agent now reports the value of the
NODE_ENV
environment variable to New Relic.
- Support for instrumenting a standalone express 4 router. See issue 154.
- Set the default log level to
info
.
-
Captured parameters for express, restify, and hapi have been normalized.
When
capture_params
is enabled the agent will collect route and query parameters. Previously express and restify only captured route params, and hapi only captured query params. This normalizes the behavior across the frameworks. -
Fixed an issue with restify instrumentation that caused the agent to always collect route parameters.
Users of restify who want to continue capturing route (and now query) parameters are advised to enable
capture_params
. -
Fixed an issue where circular configs caused the agent to crash.
-
Fixed an issue where collected errors did not include captured and custom parameters.
-
Added the environment variable
NEW_RELIC_HIGH_SECURITY
. This correlates to thehigh_security
setting in yournewrelic.js
for High Security Mode.
-
Client side setting of
high_security
is now supported.High Security Mode is a feature to prevent any sensitive data from being sent to New Relic. The local setting for the agent must match the server setting in the New Relic APM UI. If there is a mismatch, the agent will log a message and act as if it is disabled. A link to the docs for High Security Mode can be found here
Attributes of high security mode (when enabled):
- requires ssl
- does not allow capturing of parameters,
- does not allow custom parameters
The default setting for High Security Mode is ‘false’.
Note: If you currently have high security mode enabled within the New Relic APM UI, you have to add
high_security: true
to your local newrelic.js. -
Fixed a bug in our instrumentation of restify, where if you were using the restify client with express as a web server, req.query would be overridden.
-
New Relic Insights support no longer requires a feature flag. If you are a paying customer, you'll begin to see data show up in Insights as soon as you upgrade to 1.6.0. The agent will send event data for every transaction up to 10,000 per minute. After that events are statistically sampled. Event data includes transaction timing, transaction name, and any custom parameters. You can read what is sent in more detail here.
You can read more about Insights here. Documentation for configuring this feature can be found here.
-
Fix a bug where if the user disabled the error collector, error count would be carried over harvest cycles instead of reset. This would result in an ever increasing error count until the app was restarted.
-
New Relic Insights beta support. This is a feature for our paying customers. The support of Insights in the agent is beta, this means we don't recommend turning the feature on in production, but instead trying it out in development and staging environments.
To enable Insights support add the following to your
newrelic.js
:feature_flag : { insights: true }
-
On connect, the full
newrelic
module configuration is pushed to New Relic APM. Full config will be visible under the Agent initialization tab, under the Settings button in the APM application page.The reported settings will reflect the running agent config, which may differ from the
newrelic.js
file depending on server-side, and environmental configuration.
-
Express 4 support.
Closes #132. Express 4 apps now have their transactions named correctly. Errors in the middleware chain are properly recorded.
- Fix issue #118
where dangling symbolic links in the
node_modules
folder would crash the environment scraper.
- Upgrade continuation-local-storage dependency to 3.0.0.
The
newrelic
node module usescls
to help join asynchronous transaction segments. The latestcls
module includes a fix that prevents contexts from leaking across transactions.
- Add high-security compliance for accounts with enterprise security enabled.
By default, the agent now works with high-security accounts,
whereas previously agents would receive an
Access Violation
. - Add a
.addCustomParameter(name, value)
api call for adding custom parameters to transaction traces, and extend the.noticeError(error, customParameters)
for adding additional parameters to error traces. - Documentation fix in the
README.md
for ignoringsocket.io
routes. - Better support for disabling browser timing headers server side. Previously the agent would not pick up the server change until restart. The agent will now disable browser timing headers as soon as the next harvest cycle.
- Fix a
socket hangup error
that was causing some agents to fail to handshake with the New Relic servers.
- Browser monitoring! Real User Monitoring! Which is also known as RUM! Whatever it's called, it allows you to see how long your pages take to load, not just on the server side, but in the browser! Wow! It's super cool! We know a lot of you have been waiting for this, and it's here! It's manually set up with an API call! Check the README for details!
- By default, all communication between New Relic for Node and New Relic's servers is now protected with crisp, clean TLS encryption. To minimize the CPU overhead of running connections over SSL (and it can be configured, see the README and the online documentation for details on how to return to plain HTTP), New Relic for Node is now using a keep-alive connection that will properly pipeline connections, for both HTTP and HTTPS.
- Improved the timings for a large class of MongoDB / Mongoose use cases. If you've encountered the issue where MongoDB trace segments last for an absurdly long duration, this should help.
- Includes a nearly total rewrite of the connection layer that the module uses
to communicate with New Relic's servers:
- More useful logs! All of the logging has been reviewed closely to maximize its value and usefulness at pretty much every level. In practice, this means that the messages logged at 'info' and higher should only be for things that are relevant to you as a customer, and at 'debug' and 'trace' should be much more useful for us when we help you isolate issues with New Relic in your applications.
- See data faster! As part of the connection handshake with New Relic, the module will now send any performance metrics gathered during the startup cycle immediately, instead of waiting a minute for the first full harvest cycle.
- Get data to New Relic more reliably! When the module has issues connecting to New Relic, it's more consistent and resilient about holding your performance data for later delivery.
- Use less bandwidth! Performance data delivery to New Relic is now sequential instead of simultaneous. This means that the bandwidth used by New Relic will be less bursty, especially on hosts running many instrumented applications (or cluster workers).
- Better implementation! There were a number of architectural problems with the old version of the connection layer, which (among other things) made it difficult to test. The new version is simpler, has a much cleaner API, and has many, many more tests.
- Ignored status codes are now always casted to numbers so that people using environment-variable configuration or strings in config still get error status ignored properly.
- If you disabled server-side configuration, the server was still able to set the value of apdex_t for your app. This was an oversight, and has been corrected.
- Before, if you had request renaming rules, if the end result was the same
as the match pattern (mapping
/path
to/path
), they would be silently ignored. This has been fixed. - MySQL instrumentation handles callback more consistently, so the transaction tracer doesn't get confused and stop tracking transactions with MySQL calls in it.
- Support for Spumko's Hapi! This support works with both Hapi 1.x and 2.0.0, and like our Express and Restify instrumentation will automatically name transactions after Hapi paths (get it) and time how long it takes to render views.
- Before, transaction naming and ignoring rules didn't work with Express and Restify routes. This has been addressed and the documentation has been clarified. Much gratitude to everyone who helped us figure out how to get this right, and for dealing with the previous, unclear documentation.
- Parameters in the ignored params list weren't being ignored in all cases.
- A very annoyingly chatty log message had its priority level dropped several levels.
- Before, there were certain circumstances under which an application would crash without New Relic installed, but wouldn't crash with it. This has been fixed, and applications with New Relic installed now crash consistently. The error tracer is now also considerably simpler.
- Added a security policy. See the new section in README.md or read SECURITY.md.
- Future-proofed the MongoDB instrumentation and prevented the module from breaking GridFS.
- Made a small tweak that should reduce the amount of blocking file I/O done by the module.
- The module's instrumentation and harvest cycle will now not hold the process open in Node 0.9+. This should make it easier for processes to shut themselves down cleanly with New Relic running.
- The environment information gatherer will no longer crash if it tries to read a directory where it's expecting a file.
- Errors thrown during the execution of Express routes or Connect middlewares that were attached to requests that ended in HTTP status codes configured to be ignored by default will now be ignored correctly.
- Made the module play nicer with Node's REPL. It no longer assumes that an application necessarily has a main module.
- A few tweaks were made to support the CoolBeans dependency injection framework.
- Several log messages were demoted to a less chatty level.
- Added the infrastructure necessary to support key transactions and New Relic's new alerting policies.
- The agent no longer renames transactions for requests that end in error to the gnomic and unhelpful '400/*' (or whatever the final HTTP status code ends up being). This should make the traced errors tab considerably more useful.
- Improved instrumentation for legacy
http.createClient
andhttp.Client
client methods. A few modules still use these legacy API calls, and the old instrumentation was just plain wrong. - Changed how the error tracer deals with certain kinds of errors to deal with differences between Node versions 0.8 and 0.10. It should now convert throws into fatal errors less frequently.
- Removed useless fs.readDir instrumentation, which generated a lot of metrics but which New Relic was unable to display in any useful form. Maybe it will come back someday in a more useful incarnation.
- Added a new call to the API,
.noticeError
. See the docs for details, but unlike the other calls on the API, you can use this to pass off errors anywhere in your app, not just from within web requests. - Ignoring slow (or polling) requests was only being applied to slow transaction traces. It now applies to metrics and transactions that end in errors.
- MongoDB, Redis and Memcached now honor the
capture_params
andignore_params
settings. - New Relic for Node.js, like New Relic's other agents, has a sophisticated system for repeatedly trying to connect to New Relic's servers when the first attempt results in failure. This had been broken since (roughly) January. It works again now.
- The built-in debugging for the transaction tracer was out of date with respect to the production tracer. This is fixed, and you're welcome to satisfy your curiosity by enabling it, but it's really not going to be useful to you unless you feel like taking the time to understand what the tracer is doing at a low level. Do not ever enable it in production, as it slaughters the tracer's performance and generates a huge pile of objects per transaction.
- Added a new setIgnoreTransaction call to the exported API to allow explicit control over whether transactions should be ignored or not. Mark those polling routes to be ignored! Pull your crazy custom favicon.ico renderer out of the ignore list!
- The module will no longer pollute MongoDB queries with New Relic-only parameters. Thanks to Alon Salant for identifying this issue, and all apologies to him for the trouble it caused him.
- The instrumentation for MongoDB, memcached, Redis, and Express will now
honor the setting of the
capture_params
configuration flag. Before the module always captured query parameters. - Fixed a problem that would cause New Relic for Node to fail on versions of Node between 0.8.0 and 0.8.3.
- Upgraded to the newest version of
continuation-local-storage
, which has many fixes for dealing with monkeypatched EventEmitters.
- General release. No code changes from v0.12.1.
- The transaction namer wasn't respecting error_collector.ignore_error_codes. We've unified the code paths there so that this no longer happens, so that if the status code of a request is in the list of codes to be ignored, it's no longer rolled up under that status code and gets its normal name.
- Changed how MongoDB, MySQL, memcached, and Redis metrics are reported to New Relic. This is part of a larger effort to make the Monitoring > Database tab of the New Relic UI more useful for Node developers. There will be a brief period where your dashboards will have both the old and new metrics, which could lead to some temporary duplication or metric names. These "duplicates" will gradually stop showing up as the reporting windows containing the old metric names expire. Be sure to let us know if you have strong feelings one way or another about this change, as it's a work in progress.
- Updated the module's dependencies to fix another subtle bug in how error-handling works in Node 0.8.x. This should resolve the errors some users were seeing.
- Fixed a crash in the tracer that could turn a recoverable application error into an unrecoverable process crash. Mea culpa, our apologies for the inconvenience if you ran into this. In our defence, the errors we're running into are getting ever more exotic as we get most of the common stuff nailed down.
- Added the ability to use the preconfigured Azure Web Server name as the application name for a Node app. Thanks to New Relic .NET engineer Nick Floyd for the suggestion.
- Added a license entry to package.json.
- Due to an npm bug, the module package got huge. This one is much smaller.
- The last build of the agent had a flaw in how it dealt with outbound requests that made it way too stringent about dealing with default ports. It is now more sane about defaults.
- The behavior of configuration precedence is slightly different now. Previously, if there were list values set in the defaults, configuration file, environment variables, or server-side configuration, they would be concatenated instead of being overwritten. This made it impossible to override some of the defaults (most notably, it was impossible to not ignore HTTP status code 404 in the error tracer), so now the configuration file will overwrite the defaults, and environment variables will overwrite the configuration file. Values sent by New Relic will still be concatenated instead of overwriting, though (again, this only affects configuration variables with list values). Thanks to GitHub user grovr for identifying the problem!
- The error tracer will collect errors off transactions after the first harvest cycle (thanks to GitHub user grovr for identifying this issue).
cluster
users will no longer see occasional crashes due to New Relic's instrumentation.- Fixed a few minor documentation errors that made it tough to use the suggested ignoring rules for socket.io transactions.
- Changed the module to not load the instrumentation at all if the agent is disabled via configuration. This will keep the module from leaking any resources when it's disabled.
- The agent used to include query parameters in the name for outbound requests,
making for unwieldy-looking trace segments. Those parameters are now
stripped off, and if
capture_params
(andignored_params
) are enabled, parameters will be captured for (nicely-formatted) display. - Added a stubbed API so that when the agent is disabled, calls to the New Relic API will not throw. Add naming calls to your code with impunity!
- The module now looks in many more places for
newrelic.js
before complaining that it can't be found. In order, it looks in the current working directory, the directory of the Node process's main module (normally whatever file you pass to node on the command line), the directory pointed to by the environment variableNEW_RELIC_HOME
, the current process's$HOME
, and the directory above the node_modules directory wherenewrelic
is installed.
- Fixed a major issue in the transaction tracer that affected users of certain Express middleware plugins. HUGE thanks to Nicolas Laplante for his assistance in isolating and reproducing the bug, and also to the denizens of #libuv for eyeballing my various unsuccessful attempts at a fix.
- Fixed another issue in the tracer where certain objects were being wrapped too many times. Thanks to José F. Romaniello for confirming the fix.
- Changed how requests handled by Express and Restify routes are named. This change is being rolled out both in this module and on the New Relic website, so there is a chance you will see the same route (or very similiar routes) show up twice in aggregated metrics.
- Dropped the default apdex tolerating value from 500 milliseconds to 100
milliseconds. This means that transactions slower than 400 milliseconds will
generate slow transaction traces. Read the documentation in README.md on
apdex_t
andapdex_f
for further details.
- Fixed an error in the Connect and Express middleware instrumentation. Another tip of the hat to Jeff Howell at Kabam for identifying this problem and pointing to a solution!
- Rewrote the MongoDB instrumentation. Big thanks to Jeff Howell at Kabam for demonstrating a much more reliable and simple approach than what we had before! Also expanded the number of MongoDB methods instrumented to include more of the common operations and indexing operations.
- Changed the default value of the
top_n
configuration parameter. Read the documentation inlib/config.default.js
for the details (we've taken another run at making the docs fortop_n
easier to understand), but the upshot is that by default you should see a greater diversity of slow transaction traces now. - Closed a hole in the transaction tracer related to Connect and Express-style middleware chains.
- Fixed issues identified by testing against various versions of 0.11 and master.
- Added guidelines for contributing to the module. Read CONTRIBUTING.md for details.
- Fixed a bug with the Connect instrumentation that would cause it to
crash when using Connect's static middleware in strict mode. Using
ES5 future reserved keywords for function names is a bad idea, and
this is why, but static's name is highly unlikely to change. For
those of you who are examining the state of your middleware stack after
configuring it, you probably shouldn't be doing that, but if you run into
problems with the New Relic agent installed, try changing your test to use
name.indexOf('whatever') === 0
as the predicate instead ofname === 'whatever'
.
- Prevent requests from being double-counted by changing the tracer to always reuse existing transactions rather than trying to nest them.
- Changed the Connect instrumentation to preserve the names of middleware functions after wrapping them. If you need this change, you should probably change your code so you don't need it anymore.
- Added a bunch of server-side configuration options that are known but unsupported to the agent.
- IMPORTANT. There have been MAJOR CHANGES in how requests are named for
display and aggregation in the New Relic user interface. Read the section in
the README on transactions and request naming for details. For good measure,
read it twice. If your requests are all still ending up named
/*
, read it a third time. This is especially true if you're not using Express or Restify, in which case you will almost certainly want to make changes in how you configure New Relic. - IMPORTANT. New Relic for Node.js now supports the full range of server-side
configuration options offered by the New Relic web interface. By default,
server-side settings will override the settings in your configuration file
(or environment variables). You can disable server-side configuration by
setting
ignore_server_configuration
totrue
in your configuration file (or settingNEW_RELIC_IGNORE_SERVER_CONFIGURATION
to 'true'). - BREAKING CHANGE: The New Relic module now exports an API to be used for
naming transactions and for adding URL to transaction name mapping rules. If
you were using
require('newrelic')
as an interface to the agent's configuration or its internals, you'll need to fix your code (also you probably shouldn't have been doing that). - BREAKING CHANGE: The configuration parameter
transaction_tracer.trace_threshold
has been renamedtransaction_tracer.transaction_threshold
to make it consistent with New Relic's other agents. - Applications using the Express or Restify routers will now have their requests named after the matching routes. These names can be overridden but the transaction-naming API.
- There are new configuration parameters for adding rules for naming or ignoring requests. The README has a good example for how to keep socket.io from blowing out your average response time. You should read it!
- Tweaked the calculation of exclusive time in transaction traces, which should make more of the transaction trace detail pages make sense.
- Fixed a regression in
beta-25
that caused the agent to incorrectly calculate an important timestamp, thus leading to data not showing up in New Relic. - Improved in-memory aggregation (when the connection between the agent and New Relic is unavailable or failing).
- Fixed a serious error in how the agent handles communication errors when sending errors to New Relic. If you're running v0.10.0 or v0.10.1, upgrade sooner rather than later, as those versions are losing data.
- Substantially improved the quality of reporting on errors noticed by the Node agent. Stack traces, scopes, and messages should be much better.
- The instrumentation for
http
no longer assumes that the hostname for external requests will be namedhost
(hostname
is also allowed, andhttp.request()
defaults tolocalhost
). - The Node agent and New Relic's servers disagreed about what many metrics should be called. The agent was wrong and it regrets the error.
- Minor tweaks to database instrumentation (MongoDB and MySQL) that could have a small but visible impact on the overview display.
- IMPORTANT. The transaction tracer in this build is COMPLETELY NEW. This means that the agent will probably work just fine under Node 0.8 and newer, but Node versions 0.6 and older are presently unsupported, and support for them may or may not come back. However, the quality of the metrics gathered by the agent is now vastly improved.
- There are over 100 commits included in this build. Every effort has been made to ensure that we will not crash your applications, but be aware there may be regressions.
- Substantially more information is displayed by New Relic for slow transaction traces. How this information is displayed is a work in progress, as New Relic works to create a consistent user experience for developers writing both synchronous and asynchronous applications.
- Most Redis and memcached operations will now provide details on which keys were involved in an operation.
- The error tracer has been given a new coat of paint as well, and takes better advantage of Node domains, when they're available. Fewer errors should be double-counted, as well.
- MongoDB instrumentation is substantially improved.
- Express instrumentation now deals with the removal of the (very helpful) version field from recent versions of Express.
- Exclusive durations are reported for metrics, improving transaction breakdowns.
- Several bugs in the communication between the New Relic agent and New Relic's servers have been fixed.
- Failed connection attempts between the agent and New Relic's servers no longer cause aggregated metrics to be lost, nor will this trigger an agent crash.
- Capture request URL before Express can mess with it.
- Don't try to connect without a license key.
- Clear out previous connection listeners on failed connection attempts.
- Don't crash when normalizing paths without a leading slash.
- The implementation of domains changed in Node 0.10.x, which necessitated a fair amount of work on the error tracer to preserve the existing error tracer behavior.
- The error tracer no longer improperly swallows thrown errors.
- The agent no longer assumes that a home directory is set.
- The agent now works correctly with the
should
assertion helper library.
- HTTPS instrumentation is both more complete and far better tested.
- Restify servers using HTTPS listeners should now be properly instrumented.
;
is now treated as a query separator in URLs, just like?
.- When using
stdout
orstderr
for logging and not using a configuration file, logging will now work as expected. - The error-handling code for DNS lookup of New Relic's servers was itself erroneous. It should no longer crash instrumented apps when DNS lookup fails.
- Simplified agent startup process.
- Using fs.readdir will no longer crash the agent and your apps. Oops!
- Added error-tracing middleware for Connect 1 & 2 applications, which includes Express 2 and 3 applications. This middleware is inserted automatically and transparently. Because it's common for end-user error handlers to not propagate errors (by calling next(error) from within the handler), the instrumentation inserts the middleware before the first error handler added to the middleware chain.
- The node-redis driver now correctly traces Redis calls made without a callback.
- Connections to New Relic that partially succeeded will now correctly keep attempting to connect until the connection succeeds or the number of retries is exhausted.
- Added a handler for yet another kind of New Relic server error (RuntimeError).
- For some of the modules instrumented by the agent (fs, http, Express 2 and 3), the error tracer now adds error tracing to wrapped function calls. This means that more of the functions in those modules will send traced errors to New Relic, even if they're trapping errors themselves. Also improves error tracer in versions of Node without domains. The error tracer rethrows all caught errors, so as to not alter behavior of instrumented apps.
- The error count sent by the agent was frequently incorrect due to an off-by-one bug.
- Include the entire stacktrace in traced errors.
- When the agent fails to successfully connect to New Relic's servers, it will try 6 more times, progressively waiting longer between each failed attempt. If no connection can be made, the agent will shut itself down.
- The agent no longer crashes instrumented applications when DNS resolution fails during the initial handshake with New Relic's servers. It logs the failures instead and retries later.
- The agent no longer alters the behavior of the generic-pool module in a way that causes modules using it to break (including node-postgres).
- In some cases, the domains-based error tracer was not working correctly.
- The agent logs significantly more useful debugging information.
- The agent's built-in compression for sending large payloads to New Relic wasn't correctly handling the Buffer returned by zlib, leading to a crash.
- In some cases, the monkeypatching used by the instrumentation wasn't written sufficiently defensively, leading to applications crashing at startup when using the agent.
- Changed how packages and dependencies are serialized when sent to New Relic's servers.
- When New Relic's servers (or an intermediate proxy) returned a response with a status code other than 20x, the entire instrumented application would crash.
- Some metric normalization rules were not being interpreted correctly, leading to malformed normalized metric names.
- Metric normalization rules that specifed that matching metrics were to be ignored were not being enforced.
- Fixed the agent's auto-restart support to cleanly shut down the connection (also fixed a bunch of bugs in restart).
- When server-side configuration changes, the agent will now correctly restart when told to do so by New Relic's servers.
- Correctly wrap net.Server.prototype.listen -- wasn't returning the server object, which broke some apps.
- If you're on a SmartOS VM with a 64-bit base image and a 64-bit build of Node that's v0.8.5 or earlier, the agent will no longer cause Node to crash. Don't even ask.
- Squared up the environment variable names with existing practice, especially with an eye towards conformity with Heroku documentation.
- Flushed out all configuration used anywhere in the agent and made sure it was documented in config.default.js.
- Using the new environment setting NEW_RELIC_NO_CONFIG_FILE, override the need to have a settings file at all.
- Add the ability to send log output to stdout or stderr.
- Can now configure the agent via environment variables. See README.md for details.
- Can now configure the location of the agent log via either logging.filepath in the configuration file, or NR_LOGGING_FILEPATH in the app's environment.
- Turning off the error tracer via configuration now actually disables it.
- Express view rendering was being instrumented improperly before, causing rendering to fail and Express to hang. Both Express 2 and 3 were affected, and both have been fixed.
- When NODE_PATH is set, resolve NODE_PATH elements properly so that package lookup for environmental information gathering doesn't crash the app.
- Now send the Node version along with the rest of the environment data.
- Added first cut at support for error tracing via Node.js 0.8+ domains. Versions of Node.js that support it (v0.8.9 and above) will make a best-faith effort to clean up after errors.
- Improved non-domain error handling on outbound HTTP requests.
- Dramatically improved accuracy of HTTP request timing.
- Be more careful in dealing with HTTP requests.
- Further improvements to node-mongodb-native instrumentation.
- Package now available via npm as "newrelic".
- Send a list of the packages and dependencies available to an app on connection to New Relic servers.
- Generally cleaned up submission of configuration information.
- Added trace-level logging of instrumentation to help diagnose issues with transaction tracing.
- Fixes to web error transaction reporting.
- Added support for node-mysql 2.0.0a driver series.
- Added support for Express 3.
- Added rudimentary instrumentation for node-redis.
- Added rudimentary support for generic-pool (for use with MySQL).
- Fixed view instrumentation for Express.
- Improved coverage of MongoDB driver.
- Many small fixes to make logging more robust.
- Don't return a partially initialized agent -- shut agent down gracefully if startup fails.
- Fixed an issue in how transaction traces were serialized that kept them from being displayed within RPM.
- Added request parameters to transaction traces, as well as URL normalization.
- Reconciled segment names in transaction traces with the corresponding metric names.
- Changed the logging module to bunyan. This means that logs are now stored
as JSON. If you want pretty-printed logs,
npm install -g bunyan
and then use the bunyan CLI tool to format and filter the logs. - The agent now sets the logging level to the configured level. Logs sent to New Relic should have been captured at the 'trace' level for the duration of the beta.
- Fixed metric -> ID renaming semantics.
- Verified that agent works with Node 0.8's cluster module.
- Completely new transaction tracer. Faster, simpler and vastly more deterministic, but the reworking likely introduced a bunch of new bugs. This also means that the agent no longer directly affects the call stack or overrides any of the core event-handling methods, which means the overhead of the transaction tracer is vastly reduced. Which is good, because you still can't turn it off.
- Transaction traces should now report the correct caller-callee relationships.
- Transaction tracer is now internally instrumented, for better debugging.
- Added support for Restify.
- Using the Node.js agent in Restify app no longer causes them to crash (fixes NA-47).
- Improved support for Express (NA-8).
- Lots of fixes to the MongoDB, MySQL and memcached instrumentation.
- MongoDB instrumentation no longer crashes MongoDB apps that include the agent (NA-48).
- More testing in Node.js 0.6.x (hard to completely test, as node-tap isn't that friendly to Node < 0.6.21).
- Transaction trace durations are now reported properly (were seconds, now milliseconds).
- The agent no longer causes Restify applications to crash.
- The internal Node metrics sampler now shuts itself down properly.
- Improved timing of Express / Connect request handlers.
- Added support for internal supportability metrics (enabled via setting debug.internal_metrics to true in newrelic.js).
- By popular demand, support for Node 0.6.x. Tested against versions 0.6.5 and 0.6.19.
- Transaction traces no longer crash the RPM transaction trace viewer.
- The Node.js agent now follows the rules for Top N slow trace gathering.
- Compress large requests before submitting them to the New Relic collector.
- trace_threshold can now be configured from the server, and is not hard coded to apdex_f.
- The agent definitely doesn't work (for now) in Node 0.6.x and earlier. The agent will now notify developers (on the console) that it's refusing to start up under old versions, but won't crash the app.
- Don't crash the instrumented app if config is missing.
- The agent faithfully records and reports basic metrics.
- The agent reports error metrics.
- The agent gathers basic slow transaction trace data.
- The agent reports transaction trace data.