Download PDF
Download page Node.js Settings Reference.
Node.js Settings Reference
You can use environment variables for some of the settings. To apply the settings, add them to the require
statement for the Node.js Agent in the monitored application.
The Node.js Agent no longer supports the proxy as of version 21.9.
General Settings
The following table is the complete list of settings in the require statement that you insert into your application code. Not all of these settings are required.
Property Name | Description |
---|---|
controllerHostName | The IP address or hostname of your Controller. For SaaS, you will receive this URL in your welcome email from AppDynamics. For on-premises, you will set these when you install the Controller. |
controllerPort | The port to which the agent connects to the Controller. It is 8090 for an on-premises Controller and 443 for a SaaS Controller. |
controllerSslEnabled | Set this property to true if connecting to the Controller via SSL. |
accountName | The account name on the Controller to which this agent will report. |
accountAccessKey | Account access key on the Controller. |
applicationName | Name that represents the entire application in the AppDynamics console. |
tierName | Name that represents your Node.js app or service in the flow maps. |
nodeName | Name of the Node.js process to be monitored by this agent. See Node Names. |
noNodeNameSuffix | Optional, set to true if you do not want the agent to add a suffix, such as -0, -1, -2, and so on, to the node name. See Node Names. |
proxyHost , proxyPort | Set these options to route data to the Controller through a proxy server. The proxyHost is the hostname or IP address of the proxy server. The proxyPort is the proxy server's HTTP or HTTPS port, whichever you are using. If you set the host, you must set the port as well. |
proxyUser , proxyPasswordFile | Configure the proxy username and password file if the proxy server requires credentials. |
proxy | Set this property to true if you want to use the Java proxy version of the Node.js Agent. |
alwaysAddEumMetadataInHttpHeaders | Set this property to true to have the Node.js Agent write business transaction metadata to the XHR header and in a cookie even if the request is considered cross-origin. See the description for the equivalent setting always-add-eum-metadata-in-http-headers in App Agent Node Properties Reference. |
btEntryPointDelayDisabled | true | false - Optional, defaults to false. Setting this property to true can accelerate the startup of business transactions, but it can adversely affect the drill-down in distributed transactions. |
debug | Set this property to true to enable debug level logging for the agent. The default is false. |
logging | The location, level, and other settings related to agent logging. See Node.js Agent Logging. |
maxProcessSnapshotsPerPeriod | Optional. The default is 2. The number of automatic process snapshots allowed in processSnapshotCountResetPeriodSeconds seconds. |
processSnapshotCountResetPeriodSeconds | Optional. The default is 60. Frequency, in seconds, at which the automatic process snapshot count is reset to 0. |
autoSnapshotDurationSeconds | Optional. The default is 10. Length, in seconds, of automatically-triggered process snapshots. |
proxyAutolaunchDisabled | true | false - Optional, defaults to false. Set this property to true if you need to manually launch the proxy for this agent. See Start the Proxy Manually for Node.js. |
proxyCtrlDir | Directory path for the directory containing the domain control socket, which the agent uses to start an AppDynamics node. Optional, set by the agent. Set manually if you are setting up a multi-tenant proxy. See Share a Proxy Among Node.js Agents. |
rootTmpDir | Directory path for the root of the directory that stores the agent files. Optional, defaults to |
tmpDir | Directory path for the subdirectory of the root directory for the monitored node. Optional, defaults to a hash of the Controller info for the instrumented node. |
reuseNode | Set this property to true to enable reusing node names. This property is useful for monitoring environments where there are many nodes with short life spans. The default is false. Note: A SIGTERM (15) shutdown of the Node.js process is a requirement for |
reuseNodePrefix | Set this property to the string that prefixes the node name when reuseNode is set to true. The Controller uses this prefix to generate node names dynamically. |
certificateFile | Directory path for the directory containing the .pem SSL certificate. |
uniqueHostId | The unique host ID can be set to any value that will identify the host. If a value is not specified, the agent will generate the host ID. This setting is only available for the proxyless version of the Node.js Agent. |
Analytics Settings
You can configure the Node.js Agent to send default transaction data to the Analytics Agent.
To add a setting for the Analytics host and port with the following format, specify the host and port numbers. The Analytics Agent may report on the same or different host and port numbers from the Node.js Agent.
analytics: {
host: <analyticsHostName>,
port: <analyticsPortNumber>,
ssl: <true / false>
}
In Analytics Settings, ensure to specify the values for the variables in their supported data types.
Variables | Supported Data Type |
---|---|
host | String |
port | Number |
ssl | Boolean |
To configure Analytics data limits, see Configure Transaction Analytics for Node.js, PHP, and Python Applications.
Windows Settings
On Windows, the Node.js Agent requires three additional ports:
proxyCommPort
: default is10101
proxyRequestPort
: default is10102
proxyReportingPort
: default is10103
See Run the Node.js Agent on Windows.
Filter Sensitive Data
If your application contains sensitive data that should not be displayed in the Controller, you can apply the following data filters to the require statement of the Node.js Agent.
Add a Sensitive Data Filter
When you enable a sensitive data filter, the Controller displays asterisks for the values of matching environment variables or system properties.
dataFilters: [{
"appliesTo": "http-headers",
"matchPattern": "host"
}],
Environment Variable Filter
By default, the Node.js Agent enables a sensitive data filter with an environment variables/system properties that contain the case-insensitive substring password|key
.
dataFilters: [{
"appliesTo": "env-vars",
"matchPattern": "password|key"
}],
Sensitive URL Filter
You can use sensitive URL filters to configure the agent to obfuscate sensitive information from the URLs in the Transaction Snapshot details.
urlFilters: [{
"delimiter": "/",
"segment": "1",
"matchPattern": "a",
"paramPattern": "bar"
}],
The sensitive URL filter checks for the matchPattern
in one segment. To check for additional segments, you can add an additional JSON array.
The filter processes requests in the following format: /aa/bb/cc
→ ***/bb/cc
.
The matchpattern/parampattern
is a standard regex.
Property Name | Description |
---|---|
urlFilters | An array that you can add more objects to if you want more rules on the segment. |
delimiter | Specifies the desired character as the URL segment endpoints. The agent splices the URL at each delimiter instance to create the segments. |
segment | Needs to be at least one number and in ascending order (such as 3,5 or 2,6 ). Wildcards (* ) are not possible. |
URL Segment Filter
With the matchpattern
regex, the Node.js Agent decides whether or not to filter a specified segment.
If you have multiple rules, list the more specific rule before the more general rule. The rules listed in the array are evaluated based on order.
Rule A:
{
'delimiter': '/',
'matchPattern': '[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}\/.{50,}',
'segment': '3,5'
}
Rule B:
{
'delimiter': '/',
'matchPattern': '[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}',
'segment': '3'
}
In this example, the first rule, Rule A, should be listed before Rule B because rule A masks the third and fifth segment.
If Rule B were to be listed and evaluated before Rule A, the third segment will be masked and the fifth segment will not masked, potentially revealing sensitive information.
URL Parameter Filter
With the paramPattern regex, the Node.js Agent decides whether or not to filter a specified query parameter.
If you need to mask all URL parameters, you can add further instruction to the array.
{ "delimiter": "/", "matchPattern": "", "segment": "99", "paramPattern": ".+"}
The Node.js Agent will filter out all URL parameters.
Sensitive Message Filter
You can use sensitive message filters to configure the agent to obfuscate sensitive information contained within text messages collected by the agent from log messages or detail messages from exceptions.
messageFilters: [{
"messageType":
"throwable",
"matchPattern":
"Error.*MySQL.",
"redactionRegex": "SQL"
}]
Environment Variables
If you have not provided the required settings in the require statement, the agent uses the values of the following environment variables if those variables are set. If both are set, the require
statement value takes precedence over the environment variable.
Environment Variable | Maps to |
---|---|
APPDYNAMICS_CONTROLLER_HOST_NAME | controllerHostName |
APPDYNAMICS_CONTROLLER_PORT | controllerPort |
APPDYNAMICS_CONTROLLER_SSL_ENABLED | controllerSslEnabled |
APPDYNAMICS_AGENT_ACCOUNT_NAME | accountName |
APPDYNAMICS_LOGGER_OUTPUT_TYPE | You can stream logs to stdout by setting its value to console . |
| You can set the logging level of the agent. Possible values include: |
APPDYNAMICS_AGENT_ACCOUNT_ACCESS_KEY | accountAccessKey |
APPDYNAMICS_AGENT_APPLICATION_NAME | applicationName |
APPDYNAMICS_AGENT_TIER_NAME | tierName |
APPDYNAMICS_AGENT_NODE_NAME | nodeName |
APPDYNAMICS_AGENT_UNIQUE_HOST_ID | - |
APPDYNAMICS_ANALYTICS_HOST_NAME | host —in Analytics settings |
APPDYNAMICS_ANALYTICS_PORT | port —in Analytics settings |
APPDYNAMICS_ANALYTICS_SSL_ENABLED | ssl —in Analytics settings |
UNIQUE_HOST_ID |
The unique host ID can be set to any value that will identify the host. If a value is not specified, the agent will generate the host ID. This environment variable is available by default (not for Java proxy mode). |