AppDynamics On-Premises 
list_alt
require statement:
                AppName and TierName in the
                        Node.js require statement. If your Splunk AppDynamics
                        application/tier is named MY_APP/MY_TIER, your
                        OpenTelemetry application/tier will be
                            MY_APP_OTEL/MY_TIER_OTEL.require("appdynamics").profile(
{
...
openTelemetry: {
enabled: <True:False> // openTelemetry is enabled or disabled
}
...
}
)
                require("appdynamics").profile(
{
...
openTelemetry: {
debug: <True:False> // Additional logging, console dump of span data
...
}
...
}
)
                require("appdynamics").profile(
{
...
openTelemetry: {
collector: {
url: <url> <http://host:port/v1/traces> // The default value is http://localhost:55680/v1/traces
}
...
}
)