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
12 lines
488 B
Plaintext
12 lines
488 B
Plaintext
import { Context } from '@opentelemetry/api';
|
|
import { ReadableSpan } from './ReadableSpan';
|
|
import { Span } from '../Span';
|
|
import { SpanProcessor } from '../SpanProcessor';
|
|
/** No-op implementation of SpanProcessor */
|
|
export declare class NoopSpanProcessor implements SpanProcessor {
|
|
onStart(_span: Span, _context: Context): void;
|
|
onEnd(_span: ReadableSpan): void;
|
|
shutdown(): Promise<void>;
|
|
forceFlush(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=NoopSpanProcessor.d.ts.map |