From 0b82a5c15499fe5c40fa2de4bc32f60d2f1456bf Mon Sep 17 00:00:00 2001 From: Ryan Steckler Date: Sat, 17 Oct 2015 09:20:19 -0700 Subject: [PATCH] CAT Documentation This documents the ability to enable or disable cross application tracing from the config file. --- lib/config.default.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/config.default.js b/lib/config.default.js index 1811af32b4..e6fd8ed98e 100644 --- a/lib/config.default.js +++ b/lib/config.default.js @@ -494,5 +494,13 @@ exports.config = { slow_sql: { enabled: false, max_samples: 10 - } + }, + + /** + * These options control features of New Relic not found elsewhere. + * cat enables and disables cross application tracing. The default is enabled. (https://docs.newrelic.com/docs/apm/transactions/cross-application-traces/cross-application-tracing) + */ + feature_flag: { + cat: true + } }