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
10 lines
599 B
Plaintext
10 lines
599 B
Plaintext
import type { CoreOptions } from '../types-hoist/options';
|
|
import type { SamplingContext } from '../types-hoist/samplingcontext';
|
|
/**
|
|
* Makes a sampling decision for the given options.
|
|
*
|
|
* Called every time a root span is created. Only root spans which emerge with a `sampled` value of `true` will be
|
|
* sent to Sentry.
|
|
*/
|
|
export declare function sampleSpan(options: Pick<CoreOptions, 'tracesSampleRate' | 'tracesSampler'>, samplingContext: SamplingContext, sampleRand: number): [sampled: boolean, sampleRate?: number, localSampleRateWasApplied?: boolean];
|
|
//# sourceMappingURL=sampling.d.ts.map |