kibana/packages/kbn-apm-synthtrace/index.ts
Dario Gieselaar 4bd8693f9b
[APM] Critical path for a single trace (#143735)
* [APM] Critical path for a single trace

* Add tech preview badge

* Update synthtrace tests

* Add new setting to mapping

* Make sure timestamp.us is set for error events as well
2022-10-27 21:33:50 +02:00

21 lines
1 KiB
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 { timerange } from './src/lib/timerange';
export { apm } from './src/lib/apm';
export { dedot } from './src/lib/utils/dedot';
export { stackMonitoring } from './src/lib/stack_monitoring';
export { observer } from './src/lib/agent_config';
export { cleanWriteTargets } from './src/lib/utils/clean_write_targets';
export { createLogger, LogLevel } from './src/lib/utils/create_logger';
export type { Fields } from './src/lib/entity';
export type { ApmFields } from './src/lib/apm/apm_fields';
export type { ApmException, ApmSynthtraceEsClient } from './src/lib/apm';
export type { EntityIterable } from './src/lib/entity_iterable';
export { EntityArrayIterable } from './src/lib/entity_iterable';