[Reporting] Add config settings to telemetry for usage analysis (#112035)

This commit is contained in:
Tim Sullivan 2021-09-14 11:15:53 -07:00 committed by GitHub
parent 2567c4f5fb
commit 93e8a7d91b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,4 +54,16 @@ export const config: PluginConfigDescriptor<ReportingConfigType> = {
}
},
],
exposeToUsage: {
capture: {
maxAttempts: true,
timeouts: { openUrl: true, renderComplete: true, waitForElements: true },
networkPolicy: false, // show as [redacted]
zoom: true,
},
csv: { maxSizeBytes: true, scroll: { size: true, duration: true } },
kibanaServer: false, // show as [redacted]
queue: { indexInterval: true, pollEnabled: true, timeout: true },
roles: { enabled: true },
},
};