kibana/packages/kbn-journeys/index.ts
Dario Gieselaar 60c8276577
Enable APM for ES when running performance journeys (#155195)
Enables APM instrumentation for Elasticsearch when running performance
journeys, for a more complete understanding of where time is being
spent:

<img width="1418" alt="CleanShot 2023-04-18 at 20 30 32@2x"
src="https://user-images.githubusercontent.com/352732/232870884-151aed23-347b-485e-8490-4b56b6beaa33.png">

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2023-04-20 16:26:48 +02:00

20 lines
754 B
TypeScript

/*
* 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.
*/
export { JourneyConfig } from './journey/journey_config';
export { JOURNEY_APM_CONFIG } from './journey/journey_apm_config';
export type {
ScalabilityAction,
ScalabilitySetup,
ResponseTimeMetric,
} from './journey/journey_config';
export { Journey } from './journey/journey';
export type { Step } from './journey/journey';
export { JourneyScreenshots } from './journey/journey_screenshots';