[CI] No longer collect APM span stack traces (#93263)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2021-03-02 22:57:03 -08:00 committed by GitHub
parent 7bd1f6fd4c
commit b8ab42dcd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,7 @@ const getDefaultConfig = (isDistributable: boolean): ApmAgentConfig => {
globalLabels: {},
centralConfig: false,
metricsInterval: isDistributable ? '120s' : '30s',
captureSpanStackTraces: false,
transactionSampleRate: process.env.ELASTIC_APM_TRANSACTION_SAMPLE_RATE
? parseFloat(process.env.ELASTIC_APM_TRANSACTION_SAMPLE_RATE)
: 1.0,