mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
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>
20 lines
754 B
TypeScript
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';
|