diff --git a/config/apm.js b/config/apm.js index 278a4d778af2ab6..20cbeee26dd03ee 100644 --- a/config/apm.js +++ b/config/apm.js @@ -21,7 +21,10 @@ * DO NOT EDIT THIS FILE! * * This file contains the configuration for the Elastic APM instrumentaion of - * Kibana itself. + * Kibana itself and is only intented to be used during development of Kibana. + * + * Instrumentation is turned off by default. Once activated it will send APM + * data to an Elasticsearch cluster accessible by Elastic employees. * * To modify the configuration, either use environment variables, or create a * file named `config/apm.dev.js`, which exports a config object as described @@ -41,6 +44,8 @@ const merge = require('lodash.merge'); module.exports = merge({ active: false, + serverUrl: 'https://f1542b814f674090afd914960583265f.apm.us-central1.gcp.cloud.es.io:443', + secretToken: 'R0Gjg46pE9K9wGestd', globalLabels: {}, centralConfig: false }, devConfig());