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>
30 lines
No EOL
1.4 KiB
Text
30 lines
No EOL
1.4 KiB
Text
import { Context, Link, Sampler, SamplingResult, SpanAttributes, SpanKind } from '@opentelemetry/api';
|
|
/**
|
|
* @deprecated Use the one defined in @opentelemetry/sdk-trace-base instead.
|
|
* A composite sampler that either respects the parent span's sampling decision
|
|
* or delegates to `delegateSampler` for root spans.
|
|
*/
|
|
export declare class ParentBasedSampler implements Sampler {
|
|
private _root;
|
|
private _remoteParentSampled;
|
|
private _remoteParentNotSampled;
|
|
private _localParentSampled;
|
|
private _localParentNotSampled;
|
|
constructor(config: ParentBasedSamplerConfig);
|
|
shouldSample(context: Context, traceId: string, spanName: string, spanKind: SpanKind, attributes: SpanAttributes, links: Link[]): SamplingResult;
|
|
toString(): string;
|
|
}
|
|
interface ParentBasedSamplerConfig {
|
|
/** Sampler called for spans with no parent */
|
|
root: Sampler;
|
|
/** Sampler called for spans with a remote parent which was sampled. Default AlwaysOn */
|
|
remoteParentSampled?: Sampler;
|
|
/** Sampler called for spans with a remote parent which was not sampled. Default AlwaysOff */
|
|
remoteParentNotSampled?: Sampler;
|
|
/** Sampler called for spans with a local parent which was sampled. Default AlwaysOn */
|
|
localParentSampled?: Sampler;
|
|
/** Sampler called for spans with a local parent which was not sampled. Default AlwaysOff */
|
|
localParentNotSampled?: Sampler;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=ParentBasedSampler.d.ts.map |