Files
klz-cables.com/.pnpm-store/v10/files/d9/bdfb014a26d211f0b3e2880b18d3d0c36b1942243942ddb5c2827cce25957bc0ef6034df810b6f8726dd6d394c7732aaf3ebbe211ae255c1789f44eddd32f2
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

28 lines
785 B
Plaintext

import { Context } from '@opentelemetry/api';
import { ReadableSpan, Span, SpanProcessor as SpanProcessorInterface } from '@opentelemetry/sdk-trace-base';
/**
* Converts OpenTelemetry Spans to Sentry Spans and sends them to Sentry via
* the Sentry SDK.
*/
export declare class SentrySpanProcessor implements SpanProcessorInterface {
private _exporter;
constructor(options?: {
timeout?: number;
});
/**
* @inheritDoc
*/
forceFlush(): Promise<void>;
/**
* @inheritDoc
*/
shutdown(): Promise<void>;
/**
* @inheritDoc
*/
onStart(span: Span, parentContext: Context): void;
/** @inheritDoc */
onEnd(span: Span & ReadableSpan): void;
}
//# sourceMappingURL=spanProcessor.d.ts.map