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>
12 lines
No EOL
499 B
Text
12 lines
No EOL
499 B
Text
import { Sampler, SamplingResult } from '../Sampler';
|
|
/** Sampler that samples a given fraction of traces based of trace id deterministically. */
|
|
export declare class TraceIdRatioBasedSampler implements Sampler {
|
|
private readonly _ratio;
|
|
private _upperBound;
|
|
constructor(_ratio?: number);
|
|
shouldSample(context: unknown, traceId: string): SamplingResult;
|
|
toString(): string;
|
|
private _normalize;
|
|
private _accumulate;
|
|
}
|
|
//# sourceMappingURL=TraceIdRatioBasedSampler.d.ts.map |