diff --git a/test/benchmark/newrelic.js b/test/benchmark/newrelic.js index 1078565174..615e3385c6 100644 --- a/test/benchmark/newrelic.js +++ b/test/benchmark/newrelic.js @@ -19,7 +19,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', logging: { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing diff --git a/test/helpers/disabled-log/newrelic.js b/test/helpers/disabled-log/newrelic.js index 3b369ff7e1..8245848653 100644 --- a/test/helpers/disabled-log/newrelic.js +++ b/test/helpers/disabled-log/newrelic.js @@ -21,7 +21,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', logging: { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing diff --git a/test/helpers/disabled-with-invalid-config/newrelic.js b/test/helpers/disabled-with-invalid-config/newrelic.js index dc493c7ab6..f607598af0 100644 --- a/test/helpers/disabled-with-invalid-config/newrelic.js +++ b/test/helpers/disabled-with-invalid-config/newrelic.js @@ -19,7 +19,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', /** * `high_security` and `security_policies_token` are mutually exclusive and will throw when configured together. diff --git a/test/helpers/disabled-with-log-queue/newrelic.js b/test/helpers/disabled-with-log-queue/newrelic.js index 0b91933409..c92fb73450 100644 --- a/test/helpers/disabled-with-log-queue/newrelic.js +++ b/test/helpers/disabled-with-log-queue/newrelic.js @@ -19,7 +19,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', logging: { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing diff --git a/test/helpers/enabled-with-log-queue/newrelic.js b/test/helpers/enabled-with-log-queue/newrelic.js index ce81547957..2cf195d5fe 100644 --- a/test/helpers/enabled-with-log-queue/newrelic.js +++ b/test/helpers/enabled-with-log-queue/newrelic.js @@ -19,7 +19,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', logging: { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing diff --git a/test/helpers/newrelic.js b/test/helpers/newrelic.js index d378633ea3..fe197dfc69 100644 --- a/test/helpers/newrelic.js +++ b/test/helpers/newrelic.js @@ -19,7 +19,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/helpers/unwritable-log/newrelic.js b/test/helpers/unwritable-log/newrelic.js index 97dfc592b9..3789dfed0f 100644 --- a/test/helpers/unwritable-log/newrelic.js +++ b/test/helpers/unwritable-log/newrelic.js @@ -21,7 +21,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key: 'license key here', + license_key: 'test1234567890', logging: { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing diff --git a/test/integration/agent/newrelic.js b/test/integration/agent/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/integration/agent/newrelic.js +++ b/test/integration/agent/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/integration/api/newrelic.js b/test/integration/api/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/integration/api/newrelic.js +++ b/test/integration/api/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/integration/api/shutdown.test.js b/test/integration/api/shutdown.test.js index 701c516ed1..f0b3613ad2 100644 --- a/test/integration/api/shutdown.test.js +++ b/test/integration/api/shutdown.test.js @@ -11,7 +11,7 @@ const nock = require('nock') const helper = require('../../lib/agent_helper') const API = require('../../../api') // This key is hardcoded in the agent helper -const EXPECTED_LICENSE_KEY = 'license key here' +const EXPECTED_LICENSE_KEY = 'test1234567890' const TEST_DOMAIN = 'test-collector.newrelic.com' const TEST_COLLECTOR_URL = `https://${TEST_DOMAIN}` diff --git a/test/integration/cat/newrelic.js b/test/integration/cat/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/integration/cat/newrelic.js +++ b/test/integration/cat/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/integration/core/newrelic.js b/test/integration/core/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/integration/core/newrelic.js +++ b/test/integration/core/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/integration/infinite-tracing-connection.test.js b/test/integration/infinite-tracing-connection.test.js index 6f90ebc003..15c3f45442 100644 --- a/test/integration/infinite-tracing-connection.test.js +++ b/test/integration/infinite-tracing-connection.test.js @@ -22,7 +22,7 @@ const cert = fakeCert({ commonName: 'localhost' }) const PROTO_PATH = path.join(__dirname, '../..', '/lib/grpc/endpoints/infinite-tracing/v1.proto') const TEST_DOMAIN = 'test-collector.newrelic.com' // This key is hardcoded in the agent helper -const EXPECTED_LICENSE_KEY = 'license key here' +const EXPECTED_LICENSE_KEY = 'test1234567890' const INITIAL_RUN_ID = 'initial_run_id' const INITIAL_SESSION_ID = 'initial_session_id' diff --git a/test/integration/instrumentation/newrelic.js b/test/integration/instrumentation/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/integration/instrumentation/newrelic.js +++ b/test/integration/instrumentation/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/integration/metric/newrelic.js b/test/integration/metric/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/integration/metric/newrelic.js +++ b/test/integration/metric/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/integration/newrelic-harvest-limits.test.js b/test/integration/newrelic-harvest-limits.test.js index 298ff23a47..15c2b8742a 100644 --- a/test/integration/newrelic-harvest-limits.test.js +++ b/test/integration/newrelic-harvest-limits.test.js @@ -41,7 +41,7 @@ test('Connect calls re-generate harvest limits from original config values', (t, nockRequest('connect').reply(200, { return_value: { agent_run_id: RUN_ID, ...serverHarvest } }) nockRequest('agent_settings', RUN_ID).reply(200, { return_value: [] }) const agent = helper.loadMockedAgent({ - license_key: 'license key here', + license_key: 'test1234567890', host: TEST_DOMAIN, application_logging: { enabled: true diff --git a/test/integration/newrelic-response-handling.test.js b/test/integration/newrelic-response-handling.test.js index 2e617d9d81..7fc34766c1 100644 --- a/test/integration/newrelic-response-handling.test.js +++ b/test/integration/newrelic-response-handling.test.js @@ -39,7 +39,7 @@ test('New Relic response code handling', async (t) => { const connecting = false const started = false const agent = helper.loadMockedAgent({ - license_key: 'license key here', + license_key: 'test1234567890', apdex_t: Number.MIN_VALUE, // force transaction traces host: TEST_DOMAIN, plugins: { diff --git a/test/integration/security-policies-cross-agent.test.js b/test/integration/security-policies-cross-agent.test.js index 86051975f3..6bf2eb2169 100644 --- a/test/integration/security-policies-cross-agent.test.js +++ b/test/integration/security-policies-cross-agent.test.js @@ -15,7 +15,7 @@ const TEST_DOMAIN = 'test-collector.newrelic.com' const RUN_ID = 'runId' const DEFAULT_CONFIG = { - license_key: 'license key here', + license_key: 'test1234567890', host: TEST_DOMAIN, security_policies_token: 'AAAA-TEST-TOKE-NNN', plugins: { diff --git a/test/integration/transaction/newrelic.js b/test/integration/transaction/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/integration/transaction/newrelic.js +++ b/test/integration/transaction/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/integration/uninstrumented/newrelic.js b/test/integration/uninstrumented/newrelic.js index 51c276f468..d5fab74bb8 100644 --- a/test/integration/uninstrumented/newrelic.js +++ b/test/integration/uninstrumented/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/integration/utilization/newrelic.js b/test/integration/utilization/newrelic.js index 8e5fb44861..f115e6eaae 100644 --- a/test/integration/utilization/newrelic.js +++ b/test/integration/utilization/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/lib/agent_helper.js b/test/lib/agent_helper.js index 470cd493bf..e816e07ff1 100644 --- a/test/lib/agent_helper.js +++ b/test/lib/agent_helper.js @@ -123,7 +123,7 @@ helper.generateCollectorPath = function generateCollectorPath(method, runID, pro let fragment = '/agent_listener/invoke_raw_method?' + `marshal_format=json&protocol_version=${protocolVersion}&` + - `license_key=license%20key%20here&method=${method}` + `license_key=test1234567890&method=${method}` if (runID) { fragment += '&run_id=' + runID diff --git a/test/smoke/newrelic.js b/test/smoke/newrelic.js index 831ef42481..bf19f19c51 100644 --- a/test/smoke/newrelic.js +++ b/test/smoke/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/unit/collector/api-connect.test.js b/test/unit/collector/api-connect.test.js index 7930b52e99..329f29730a 100644 --- a/test/unit/collector/api-connect.test.js +++ b/test/unit/collector/api-connect.test.js @@ -20,7 +20,7 @@ const RUN_ID = 1337 const baseAgentConfig = { app_name: ['TEST'], ssl: true, - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/unit/collector/api-login.test.js b/test/unit/collector/api-login.test.js index fc5170d231..cf5cef52bd 100644 --- a/test/unit/collector/api-login.test.js +++ b/test/unit/collector/api-login.test.js @@ -19,7 +19,7 @@ const SECURITY_POLICIES_TOKEN = 'TEST-TEST-TEST-TEST' const baseAgentConfig = { app_name: ['TEST'], ssl: true, - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/unit/collector/api-run-lifecycle.test.js b/test/unit/collector/api-run-lifecycle.test.js index cf0d582c42..aa4035ec13 100644 --- a/test/unit/collector/api-run-lifecycle.test.js +++ b/test/unit/collector/api-run-lifecycle.test.js @@ -17,7 +17,7 @@ const RUN_ID = 1337 const baseAgentConfig = { app_name: ['TEST'], ssl: true, - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/unit/collector/remote-method.test.js b/test/unit/collector/remote-method.test.js index f9fc6d0850..3414d0b4c3 100644 --- a/test/unit/collector/remote-method.test.js +++ b/test/unit/collector/remote-method.test.js @@ -260,7 +260,7 @@ test('when posting to collector', async (t) => { ctx.nr.config = new Config({ ssl: true, run_id: RUN_ID, - license_key: 'license key here' + license_key: 'test1234567890' }) ctx.nr.endpoint = { host: collector.host, port: collector.port } @@ -602,7 +602,7 @@ test('record data usage supportability metrics', async (t) => { ctx.nr.collector = collector await collector.listen() - ctx.nr.config = new Config({ license_key: 'license key here' }) + ctx.nr.config = new Config({ license_key: 'test1234567890' }) ctx.nr.endpoint = { host: collector.host, port: collector.port } ctx.nr.agent = helper.instrumentMockedAgent(collector.agentConfig) diff --git a/test/unit/collector/serverless.test.js b/test/unit/collector/serverless.test.js index f5f7fc2f9d..7632ca6156 100644 --- a/test/unit/collector/serverless.test.js +++ b/test/unit/collector/serverless.test.js @@ -30,7 +30,7 @@ test('ServerlessCollector API', async (t) => { const baseAgentConfig = { serverless_mode: { enabled: true }, app_name: ['TEST'], - license_key: 'license key here' + license_key: 'test1234567890' } const config = Object.assign({}, baseAgentConfig, collector.agentConfig, { config: { run_id: RUN_ID } @@ -220,7 +220,7 @@ test('ServerlessCollector with output to custom pipe', async (t) => { const baseAgentConfig = { serverless_mode: { enabled: true }, app_name: ['TEST'], - license_key: 'license key here', + license_key: 'test1234567890', NEWRELIC_PIPE_PATH: ctx.nr.destPath } const config = Object.assign({}, baseAgentConfig, collector.agentConfig, { diff --git a/test/unit/instrumentation/koa/newrelic.js b/test/unit/instrumentation/koa/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/unit/instrumentation/koa/newrelic.js +++ b/test/unit/instrumentation/koa/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/unit/instrumentation/superagent/newrelic.js b/test/unit/instrumentation/superagent/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/unit/instrumentation/superagent/newrelic.js +++ b/test/unit/instrumentation/superagent/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/unit/rum.test.js b/test/unit/rum.test.js index a44683f2a0..086e5a2f4a 100644 --- a/test/unit/rum.test.js +++ b/test/unit/rum.test.js @@ -15,7 +15,7 @@ test('the RUM API', async function (t) { t.beforeEach(function (ctx) { ctx.nr = {} const agent = helper.loadMockedAgent({ - license_key: 'license key here', + license_key: 'test1234567890', browser_monitoring: { attributes: { enabled: true, diff --git a/test/versioned/amqplib-esm/newrelic.cjs b/test/versioned/amqplib-esm/newrelic.cjs index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/amqplib-esm/newrelic.cjs +++ b/test/versioned/amqplib-esm/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/amqplib/newrelic.js b/test/versioned/amqplib/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/amqplib/newrelic.js +++ b/test/versioned/amqplib/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/aws-sdk-v2/newrelic.js b/test/versioned/aws-sdk-v2/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/aws-sdk-v2/newrelic.js +++ b/test/versioned/aws-sdk-v2/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/aws-sdk-v3/newrelic.js b/test/versioned/aws-sdk-v3/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/aws-sdk-v3/newrelic.js +++ b/test/versioned/aws-sdk-v3/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/bluebird/newrelic.js b/test/versioned/bluebird/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/bluebird/newrelic.js +++ b/test/versioned/bluebird/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/bunyan/newrelic.js b/test/versioned/bunyan/newrelic.js index 42cd91c9ad..3c95ef8bf9 100644 --- a/test/versioned/bunyan/newrelic.js +++ b/test/versioned/bunyan/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['New Relic for Node.js tests'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/cassandra-driver/newrelic.js b/test/versioned/cassandra-driver/newrelic.js index e36bd56fbd..37df3b0914 100644 --- a/test/versioned/cassandra-driver/newrelic.js +++ b/test/versioned/cassandra-driver/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', enabled: false, diff --git a/test/versioned/cls/newrelic.js b/test/versioned/cls/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/cls/newrelic.js +++ b/test/versioned/cls/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/connect/newrelic.js b/test/versioned/connect/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/connect/newrelic.js +++ b/test/versioned/connect/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/disabled-instrumentation/newrelic.js b/test/versioned/disabled-instrumentation/newrelic.js index 0caf680f7e..6d38ab827b 100644 --- a/test/versioned/disabled-instrumentation/newrelic.js +++ b/test/versioned/disabled-instrumentation/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace' }, diff --git a/test/versioned/elastic/newrelic.js b/test/versioned/elastic/newrelic.js index 4b3aa3e0f4..2695db651a 100644 --- a/test/versioned/elastic/newrelic.js +++ b/test/versioned/elastic/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['elasticsearch test'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/esm-package/newrelic.cjs b/test/versioned/esm-package/newrelic.cjs index a9b929f3c9..d9529a17ac 100644 --- a/test/versioned/esm-package/newrelic.cjs +++ b/test/versioned/esm-package/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/express-esm/newrelic.cjs b/test/versioned/express-esm/newrelic.cjs index a9b929f3c9..d9529a17ac 100644 --- a/test/versioned/express-esm/newrelic.cjs +++ b/test/versioned/express-esm/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/express/newrelic.js b/test/versioned/express/newrelic.js index 0caf680f7e..6d38ab827b 100644 --- a/test/versioned/express/newrelic.js +++ b/test/versioned/express/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace' }, diff --git a/test/versioned/fastify/newrelic.js b/test/versioned/fastify/newrelic.js index 8e694d90db..a0800c1618 100644 --- a/test/versioned/fastify/newrelic.js +++ b/test/versioned/fastify/newrelic.js @@ -7,5 +7,5 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here' + license_key: 'test1234567890' } diff --git a/test/versioned/generic-pool/newrelic.js b/test/versioned/generic-pool/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/generic-pool/newrelic.js +++ b/test/versioned/generic-pool/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/grpc-esm/newrelic.cjs b/test/versioned/grpc-esm/newrelic.cjs index 7131bf6970..4add53df92 100644 --- a/test/versioned/grpc-esm/newrelic.cjs +++ b/test/versioned/grpc-esm/newrelic.cjs @@ -7,5 +7,5 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here' + license_key: 'test1234567890' } diff --git a/test/versioned/grpc/newrelic.js b/test/versioned/grpc/newrelic.js index 7131bf6970..4add53df92 100644 --- a/test/versioned/grpc/newrelic.js +++ b/test/versioned/grpc/newrelic.js @@ -7,5 +7,5 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here' + license_key: 'test1234567890' } diff --git a/test/versioned/hapi/newrelic.js b/test/versioned/hapi/newrelic.js index 0caf680f7e..6d38ab827b 100644 --- a/test/versioned/hapi/newrelic.js +++ b/test/versioned/hapi/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace' }, diff --git a/test/versioned/ioredis/newrelic.js b/test/versioned/ioredis/newrelic.js index 7bb5b2ec1d..85a900afa5 100644 --- a/test/versioned/ioredis/newrelic.js +++ b/test/versioned/ioredis/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/kafkajs/newrelic.js b/test/versioned/kafkajs/newrelic.js index af4b696e2f..50566f032c 100644 --- a/test/versioned/kafkajs/newrelic.js +++ b/test/versioned/kafkajs/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/versioned/koa/newrelic.js b/test/versioned/koa/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/koa/newrelic.js +++ b/test/versioned/koa/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/memcached/newrelic.js b/test/versioned/memcached/newrelic.js index 0c4ade8d59..dce4ff5801 100644 --- a/test/versioned/memcached/newrelic.js +++ b/test/versioned/memcached/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/mongodb-esm/newrelic.cjs b/test/versioned/mongodb-esm/newrelic.cjs index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/mongodb-esm/newrelic.cjs +++ b/test/versioned/mongodb-esm/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/mongodb/newrelic.js b/test/versioned/mongodb/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/mongodb/newrelic.js +++ b/test/versioned/mongodb/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/mysql/newrelic.js b/test/versioned/mysql/newrelic.js index 46f4daa589..e5f031872a 100644 --- a/test/versioned/mysql/newrelic.js +++ b/test/versioned/mysql/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'debug', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/mysql2/newrelic.js b/test/versioned/mysql2/newrelic.js index 0c85fd3ab9..b395f1c5e9 100644 --- a/test/versioned/mysql2/newrelic.js +++ b/test/versioned/mysql2/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/nextjs/newrelic.js b/test/versioned/nextjs/newrelic.js index 8e694d90db..a0800c1618 100644 --- a/test/versioned/nextjs/newrelic.js +++ b/test/versioned/nextjs/newrelic.js @@ -7,5 +7,5 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here' + license_key: 'test1234567890' } diff --git a/test/versioned/opensearch/newrelic.js b/test/versioned/opensearch/newrelic.js index e98a8afddb..bb1a96b975 100644 --- a/test/versioned/opensearch/newrelic.js +++ b/test/versioned/opensearch/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['opensearch test'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/pg-esm/newrelic.cjs b/test/versioned/pg-esm/newrelic.cjs index 32aef52990..6dd746fba4 100644 --- a/test/versioned/pg-esm/newrelic.cjs +++ b/test/versioned/pg-esm/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['pg@4 test'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/pg/newrelic.js b/test/versioned/pg/newrelic.js index 32aef52990..6dd746fba4 100644 --- a/test/versioned/pg/newrelic.js +++ b/test/versioned/pg/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['pg@4 test'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/pino/newrelic.js b/test/versioned/pino/newrelic.js index af4b696e2f..50566f032c 100644 --- a/test/versioned/pino/newrelic.js +++ b/test/versioned/pino/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/versioned/q/newrelic.js b/test/versioned/q/newrelic.js index 0c4ade8d59..dce4ff5801 100644 --- a/test/versioned/q/newrelic.js +++ b/test/versioned/q/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/redis/newrelic.js b/test/versioned/redis/newrelic.js index bbbc6eb2f6..13be260ca3 100644 --- a/test/versioned/redis/newrelic.js +++ b/test/versioned/redis/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['redis@2 test'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/restify/newrelic.js b/test/versioned/restify/newrelic.js index 5bfe53711f..82c1b4ad2e 100644 --- a/test/versioned/restify/newrelic.js +++ b/test/versioned/restify/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/superagent/newrelic.js b/test/versioned/superagent/newrelic.js index 7dd4659717..8a92a7c616 100644 --- a/test/versioned/superagent/newrelic.js +++ b/test/versioned/superagent/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../newrelic_agent.log' diff --git a/test/versioned/when/newrelic.js b/test/versioned/when/newrelic.js index 0c4ade8d59..dce4ff5801 100644 --- a/test/versioned/when/newrelic.js +++ b/test/versioned/when/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['My Application'], - license_key: 'license key here', + license_key: 'test1234567890', utilization: { detect_aws: false, detect_pcf: false, diff --git a/test/versioned/winston-esm/newrelic.cjs b/test/versioned/winston-esm/newrelic.cjs index 42cd91c9ad..3c95ef8bf9 100644 --- a/test/versioned/winston-esm/newrelic.cjs +++ b/test/versioned/winston-esm/newrelic.cjs @@ -7,7 +7,7 @@ exports.config = { app_name: ['New Relic for Node.js tests'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log' diff --git a/test/versioned/winston/newrelic.js b/test/versioned/winston/newrelic.js index 42cd91c9ad..3c95ef8bf9 100644 --- a/test/versioned/winston/newrelic.js +++ b/test/versioned/winston/newrelic.js @@ -7,7 +7,7 @@ exports.config = { app_name: ['New Relic for Node.js tests'], - license_key: 'license key here', + license_key: 'test1234567890', logging: { level: 'trace', filepath: '../../../newrelic_agent.log'