Skip to content

fix(insights): updated empty-state copy for caches / queues #72905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 18, 2024
Merged
4 changes: 2 additions & 2 deletions static/app/views/performance/cache/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const MODULE_DESCRIPTION = t(
export const MODULE_DOC_LINK = 'https://docs.sentry.io/product/insights/caches/';

export const ONBOARDING_CONTENT = {
title: t('Start collecting Insights about your Caches!'),
description: t('Our robot is waiting to collect your first cache hit.'),
title: t('Make Sure Your Application Caches Are Behaving Properly'),
description: t('We tell you if your application is hitting cache as often as expected and whether caching is providing the performance improvements you imagined.'),
link: MODULE_DOC_LINK,
};
4 changes: 2 additions & 2 deletions static/app/views/performance/queues/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const MODULE_DOC_LINK =
'https://docs.sentry.io/product/insights/queue-monitoring/';

export const ONBOARDING_CONTENT = {
title: t('Start collecting Insights about your Queues!'),
description: t('Our robot is waiting for your first background job to complete.'),
title: t('Make Sure the Jobs You Publish Complete Without Errors'),
description: t('Track the behavior of background jobs at each step in their processing, allowing you to see whether jobs are completing on time and making it easy to debug when they are failing.'),
link: MODULE_DOC_LINK,
};
Loading