We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70eaf1 commit 8bbd3d5Copy full SHA for 8bbd3d5
1 file changed
x-pack/test/security_solution_endpoint/services/endpoint_telemetry.ts
@@ -5,10 +5,14 @@
5
*/
6
import fs from 'fs';
7
import Path from 'path';
8
+import { KIBANA_ROOT } from '@kbn/test';
9
import { FtrProviderContext } from '../ftr_provider_context';
10
11
const TELEMETRY_API_ROOT = '/api/stats?extended=true';
-const TELEMETRY_DATA_ROOT = 'test/functional/es_archives/endpoint/telemetry/';
12
+const TELEMETRY_DATA_ROOT = Path.join(
13
+ KIBANA_ROOT,
14
+ 'x-pack/test/functional/es_archives/endpoint/telemetry/'
15
+);
16
17
interface EndpointTelemetry {
18
total_installed: number;
0 commit comments