Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
13 lines
504 B
Plaintext
13 lines
504 B
Plaintext
import { TracerProvider, MeterProvider } from '@opentelemetry/api';
|
|
import { Instrumentation } from './types';
|
|
import { LoggerProvider } from '@opentelemetry/api-logs';
|
|
export interface AutoLoaderResult {
|
|
instrumentations: Instrumentation[];
|
|
}
|
|
export interface AutoLoaderOptions {
|
|
instrumentations?: (Instrumentation | Instrumentation[])[];
|
|
tracerProvider?: TracerProvider;
|
|
meterProvider?: MeterProvider;
|
|
loggerProvider?: LoggerProvider;
|
|
}
|
|
//# sourceMappingURL=types_internal.d.ts.map |