This repository was archived by the owner on Sep 10, 2024. It is now read-only.
forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.ts
53 lines (45 loc) · 2.1 KB
/
plugin.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
47
48
49
50
51
52
53
/*
* 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 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { CoreSetup, CoreStart, Logger, Plugin, PluginInitializerContext } from 'kibana/server';
import type { DataRequestHandlerContext } from '../../data/server';
import { ProfilingPluginSetupDeps, ProfilingPluginStartDeps } from './types';
import { registerRoutes } from './routes';
import { DownsampledTopNFactory } from './search/strategy';
import { DOWNSAMPLED_TOPN_STRATEGY } from '../common/types';
export class ProfilingPlugin
implements Plugin<void, void, ProfilingPluginSetupDeps, ProfilingPluginStartDeps>
{
private readonly logger: Logger;
constructor(initializerContext: PluginInitializerContext) {
this.logger = initializerContext.logger.get();
}
public setup(core: CoreSetup<ProfilingPluginStartDeps>, deps: ProfilingPluginSetupDeps) {
this.logger.debug('profiling: Setup');
// TODO we should create a query here using "data".
// We should ensure there are profiling data in the expected indices
// and return an error otherwise.
// This should be done only once at startup and before exposing the routed APIs.
const router = core.http.createRouter<DataRequestHandlerContext>();
core.getStartServices().then(([_, depsStart]) => {
deps.data.search.registerSearchStrategy(
DOWNSAMPLED_TOPN_STRATEGY,
DownsampledTopNFactory(depsStart.data)
);
registerRoutes(router, this.logger);
});
return {};
}
public start(core: CoreStart, { data }: ProfilingPluginStartDeps) {
this.logger.debug('profiling: Started');
// TODO preload down-sampling factor value here.
// We want to calculate and set into a class property the starting index to read data from.
// We may want to do this here to speed up the resolution of queries afterwards.
return {};
}
public stop() {}
}