From f7947c1725224ede8ea907e38ee6f701e7fadfca Mon Sep 17 00:00:00 2001 From: Komarudin Date: Thu, 15 Mar 2018 13:14:59 +0700 Subject: [PATCH] add newrelic --- newrelic.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 newrelic.js diff --git a/newrelic.js b/newrelic.js new file mode 100644 index 0000000..a6dc4ef --- /dev/null +++ b/newrelic.js @@ -0,0 +1,24 @@ +/** + * New Relic agent configuration. + * + * See lib/config.default.js in the agent distribution for a more complete + * description of configuration variables and their potential values. + */ +exports.config = { + /** + * Array of application names. + */ + app_name: ['nocode'], + /** + * Your New Relic license key. + */ + license_key: ' ', + logging: { + /** + * Level at which to log. 'trace' is most useful to New Relic when diagnosing + * issues with the agent, 'info' and higher will impose the least overhead on + * production applications. + */ + level: 'info', + }, +}