Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
41 lines
No EOL
1.5 KiB
Text
41 lines
No EOL
1.5 KiB
Text
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 _exporter;
|
|
private readonly _maxExportBatchSize;
|
|
private readonly _maxQueueSize;
|
|
private readonly _scheduledDelayMillis;
|
|
private readonly _exportTimeoutMillis;
|
|
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 |