-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy pathusage_collector.ts
46 lines (40 loc) · 1.46 KB
/
usage_collector.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { CoreSetup } from '@kbn/core/server';
import { UsageCollectionSetup } from '@kbn/usage-collection-plugin/server';
import { getTelemetry, initTelemetry, Telemetry } from './telemetry';
import { telemetryMappingsType } from './mappings';
import { getInternalRepository, setInternalRepository } from './internal_repository';
export function initFileUploadTelemetry(
coreSetup: CoreSetup,
usageCollection: UsageCollectionSetup
) {
coreSetup.savedObjects.registerType(telemetryMappingsType);
registerUsageCollector(usageCollection);
coreSetup.getStartServices().then(([core]) => {
setInternalRepository(core.savedObjects.createInternalRepository);
});
}
function registerUsageCollector(usageCollectionSetup: UsageCollectionSetup): void {
const usageCollector = usageCollectionSetup.makeUsageCollector<Telemetry>({
type: 'fileUpload',
isReady: () => true,
schema: {
file_upload: {
index_creation_count: { type: 'long' },
},
},
fetch: async () => {
const mlUsage = await getTelemetry(getInternalRepository()!);
if (!mlUsage) {
return initTelemetry();
}
return mlUsage;
},
});
usageCollectionSetup.registerCollector(usageCollector);
}