Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/app/views/settings/dynamicSampling/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function DynamicSamplingSettings() {
action={
<LinkButton
external
href="https://docs.sentry.io/product/performance/retention-priorities/"
href="https://docs.sentry.io/organization/dynamic-sampling/"
>
{t('Read the docs')}
</LinkButton>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function SamplingModeSwitch({initialTargetRate}: Props) {
'Manually specify the percentage of incoming traffic that should be stored for each project. [link:Read the docs]',
{
link: (
<ExternalLink href="https://docs.sentry.io/product/performance/retention-priorities/" />
<ExternalLink href="https://docs.sentry.io/organization/dynamic-sampling/#advanced-mode" />
),
}
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,18 @@ function SamplingModeSwitchModal({
'Deactivating advanced mode enables continuous adjustments for your projects based on a global target sample rate. Sentry boosts the sample rates of small projects and ensures equal visibility. [learnMoreLink:Learn more]',
{
learnMoreLink: (
<ExternalLink href="https://docs.sentry.io/product/performance/retention-priorities/" />
<ExternalLink href="https://docs.sentry.io/organization/dynamic-sampling/" />
),
}
)
: tct(
'Switching to advanced mode disables automatic adjustments. After the switch, you can configure individual sample rates for each project. [prioritiesLink:Dynamic sampling priorities] continue to apply within the projects. [learnMoreLink:Learn more]',
{
prioritiesLink: (
<ExternalLink href="https://docs.sentry.io/product/performance/retention-priorities/" />
<ExternalLink href="https://docs.sentry.io/organization/dynamic-sampling/#dynamic-sampling-priorities" />
),
learnMoreLink: (
<ExternalLink href="https://docs.sentry.io/product/performance/retention-priorities/" />
<ExternalLink href="https://docs.sentry.io/organization/dynamic-sampling/#advanced-mode" />
),
}
)}
Expand Down
Loading