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
18 lines
703 B
Plaintext
18 lines
703 B
Plaintext
import { Context } from '@opentelemetry/api';
|
|
import { ReadableSpan } from './export/ReadableSpan';
|
|
import { Span } from './Span';
|
|
import { SpanProcessor } from './SpanProcessor';
|
|
/**
|
|
* Implementation of the {@link SpanProcessor} that simply forwards all
|
|
* received events to a list of {@link SpanProcessor}s.
|
|
*/
|
|
export declare class MultiSpanProcessor implements SpanProcessor {
|
|
private readonly _spanProcessors;
|
|
constructor(spanProcessors: SpanProcessor[]);
|
|
forceFlush(): Promise<void>;
|
|
onStart(span: Span, context: Context): void;
|
|
onEnding(span: Span): void;
|
|
onEnd(span: ReadableSpan): void;
|
|
shutdown(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=MultiSpanProcessor.d.ts.map |