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
41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
import { Context } from '@opentelemetry/api';
|
|
import { Span } from '../Span';
|
|
import { SpanProcessor } from '../SpanProcessor';
|
|
import { BufferConfig } from '../types';
|
|
import { ReadableSpan } from './ReadableSpan';
|
|
import { SpanExporter } from './SpanExporter';
|
|
/**
|
|
* Implementation of the {@link SpanProcessor} that batches spans exported by
|
|
* the SDK then pushes them to the exporter pipeline.
|
|
*/
|
|
export declare abstract class BatchSpanProcessorBase<T extends BufferConfig> implements SpanProcessor {
|
|
private readonly _maxExportBatchSize;
|
|
private readonly _maxQueueSize;
|
|
private readonly _scheduledDelayMillis;
|
|
private readonly _exportTimeoutMillis;
|
|
private readonly _exporter;
|
|
private _isExporting;
|
|
private _finishedSpans;
|
|
private _timer;
|
|
private _shutdownOnce;
|
|
private _droppedSpansCount;
|
|
constructor(exporter: SpanExporter, config?: T);
|
|
forceFlush(): Promise<void>;
|
|
onStart(_span: Span, _parentContext: Context): void;
|
|
onEnd(span: ReadableSpan): void;
|
|
shutdown(): Promise<void>;
|
|
private _shutdown;
|
|
/** Add a span in the buffer. */
|
|
private _addToBuffer;
|
|
/**
|
|
* Send all spans to the exporter respecting the batch size limit
|
|
* This function is used only on forceFlush or shutdown,
|
|
* for all other cases _flush should be used
|
|
* */
|
|
private _flushAll;
|
|
private _flushOneBatch;
|
|
private _maybeStartTimer;
|
|
private _clearTimer;
|
|
protected abstract onShutdown(): void;
|
|
}
|
|
//# sourceMappingURL=BatchSpanProcessorBase.d.ts.map |