UNPKG

@splunk/otel

Version:

The Splunk distribution of OpenTelemetry Node Instrumentation provides a Node agent that automatically instruments your Node application to capture and report distributed traces to Splunk APM.

23 lines 898 B
import { startTracing as _startTracing, stopTracing as _stopTracing } from './tracing'; import { startMetrics as _startMetrics } from './metrics'; export { ConsoleMetricExporter, ConsoleMetricExporterOptions, } from './metrics/ConsoleMetricExporter'; import { startProfiling as _startProfiling } from './profiling'; export { start, stop } from './start'; export { listEnvVars } from './utils'; /** * @deprecated Use generic start() function instead */ export declare const startMetrics: typeof _startMetrics; /** * @deprecated Use generic start() function instead */ export declare const startProfiling: typeof _startProfiling; /** * @deprecated Use generic start() function instead */ export declare const startTracing: typeof _startTracing; /** * @deprecated Use generic stop() function instead */ export declare const stopTracing: typeof _stopTracing; //# sourceMappingURL=index.d.ts.map