중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
- 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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
- 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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
The agent now reports the value of the
NODE_ENV
environment variable to New Relic.This will show up in your Settings -> Environment tab in APM. The data is being collected for debugging and to aid support.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
- Support for instrumenting a standalone express 4 router. See issue 154.
- Set the default log level to
info
.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
- 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.
중요
The end-of-life date for this agent version is July 29, 2019. To update to the latest agent version, see Update the agent. For more information, see End-of-life policy.
Notes
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.