123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- import {GuidesContent} from 'sentry/components/assistant/types';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- import {t, tct} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- export default function getGuidesContent(orgSlug: string | null): GuidesContent {
- if (ConfigStore.get('demoMode')) {
- return getDemoModeGuides();
- }
- return [
- {
- guide: 'issue',
- requiredTargets: ['issue_number', 'exception'],
- steps: [
- {
- title: t('Identify Your Issues'),
- target: 'issue_number',
- description: tct(
- `You have Issues. That's fine. Use the Issue number in your commit message,
- and we'll automatically resolve the Issue when your code is deployed. [link:Learn more]`,
- {link: <ExternalLink href="https://docs.sentry.io/product/releases/" />}
- ),
- },
- {
- title: t('Annoy the Right People'),
- target: 'owners',
- description: tct(
- `Notification overload makes it tempting to hurl your phone into the ocean.
- Define who is responsible for what, so alerts reach the right people and your
- devices stay on dry land. [link:Learn more]`,
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/product/error-monitoring/issue-owners/" />
- ),
- }
- ),
- },
- {
- title: t('Narrow Down Suspects'),
- target: 'exception',
- description: t(
- `We've got stack trace. See the exact sequence of function calls leading to the error
- in question, no detective skills necessary.`
- ),
- },
- {
- title: t('Retrace Your Steps'),
- target: 'breadcrumbs',
- description: t(
- `Not sure how you got here? Sentry automatically captures breadcrumbs for events in web
- frameworks to lead you straight to your error.`
- ),
- },
- ],
- },
- {
- guide: 'issue_stream',
- requiredTargets: ['issue_stream'],
- steps: [
- {
- title: t('Issues'),
- target: 'issue_stream',
- description: tct(
- `Sentry automatically groups similar events together into an issue. Similarity is
- determined by stack trace and other factors. [link:Learn more].`,
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platform-redirect/?next=/data-management/event-grouping/" />
- ),
- }
- ),
- },
- ],
- },
- {
- guide: 'alerts_write_owner',
- requiredTargets: ['alerts_write_owner'],
- steps: [
- {
- target: 'alerts_write_owner',
- description: tct(
- `Today only admins in your organization can create alert rules but we recommend [link:allowing members to create alerts], too.`,
- {
- link: <Link to={orgSlug ? `/settings/${orgSlug}` : `/settings`} />,
- }
- ),
- nextText: t(`Allow`),
- hasNextGuide: true,
- },
- ],
- },
- {
- guide: 'trace_view',
- requiredTargets: ['trace_view_guide_row', 'trace_view_guide_row_details'],
- steps: [
- {
- title: t('Event Breakdown'),
- target: 'trace_view_guide_breakdown',
- description: t(
- `The event breakdown shows you the breakdown of event types within a trace.`
- ),
- },
- {
- title: t('Transactions'),
- target: 'trace_view_guide_row',
- description: t(
- `You can quickly see all the transactions in a trace alongside the project, transaction duration, and any related errors.`
- ),
- },
- {
- title: t('Transactions Details'),
- target: 'trace_view_guide_row_details',
- description: t(`Click on any transaction to see more details.`),
- },
- ],
- },
- {
- guide: 'span_op_breakdowns_and_tag_explorer',
- requiredTargets: ['span_op_breakdowns_filter'],
- steps: [
- {
- title: t('Filter by Span Operation'),
- target: 'span_op_breakdowns_filter',
- description: t(
- 'You can now filter these transaction events based on http, db, browser or resource operation.'
- ),
- },
- {
- title: t('Suspect Tags'),
- target: 'tag_explorer',
- description: tct(
- "See which tags often correspond to slower transactions. You'll want to investigate these more. [link:Learn more]",
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/product/performance/transaction-summary/#suspect-tags" />
- ),
- }
- ),
- },
- ],
- },
- {
- guide: 'project_transaction_threshold',
- requiredTargets: ['project_transaction_threshold'],
- steps: [
- {
- title: t('Project Thresholds'),
- target: 'project_transaction_threshold',
- description: t(
- 'Gauge performance using different metrics for each project. Set response time thresholds, per project, for the Apdex and User Misery Scores in each project’s Performance settings.'
- ),
- },
- ],
- },
- {
- guide: 'project_transaction_threshold_override',
- requiredTargets: ['project_transaction_threshold_override'],
- steps: [
- {
- title: t('Response Time Thresholds'),
- target: 'project_transaction_threshold_override',
- description: t(
- 'Use this menu to adjust each transaction’s satisfactory response time threshold, which can vary across transactions. These thresholds are used to calculate Apdex and User Misery, metrics that indicate how satisfied and miserable users are, respectively.'
- ),
- },
- ],
- },
- {
- guide: 'semver',
- requiredTargets: ['releases_search'],
- dateThreshold: new Date('2021-05-01'),
- steps: [
- {
- title: t('Filter by Semver'),
- target: 'releases_search',
- description: tct(
- 'You can now filter releases by semver. For example: release.version:>14.0 [br] [link:View the docs]',
- {
- br: <br />,
- link: (
- <ExternalLink href="https://docs.sentry.io/product/releases/usage/sorting-filtering/#filtering-releases" />
- ),
- }
- ),
- nextText: t('Leave me alone'),
- },
- ],
- },
- {
- guide: 'new_page_filters',
- requiredTargets: ['new_page_filter_button'],
- expectedTargets: ['new_page_filter_pin'],
- dateThreshold: new Date('2022-04-05'),
- steps: [
- {
- title: t('Selection filters here now!'),
- target: 'new_page_filter_button',
- description: t(
- "Selection filters were at the top of the page. Now they're here. Because this is what's getting filtered. Obvi."
- ),
- nextText: t('Sounds Good'),
- },
- {
- title: t('Pin your filters'),
- target: 'new_page_filter_pin',
- description: t(
- "Want to keep the same filters between searches and sessions? Click this button. Don't want to? Don't click this button."
- ),
- nextText: t('Got It'),
- },
- ],
- },
- {
- guide: 'releases_widget',
- requiredTargets: ['releases_widget'],
- dateThreshold: new Date('2022-06-22'),
- steps: [
- {
- title: t('Releases are here!'),
- target: 'releases_widget',
- description: t(
- 'Want to know how your latest release is doing? Monitor release health and crash rates in Dashboards.'
- ),
- nextText: t('Sounds Good'),
- },
- ],
- },
- {
- guide: 'activate_sampling_rule',
- requiredTargets: ['sampling_rule_toggle'],
- dateThreshold: new Date('2022-07-05'),
- steps: [
- {
- title: t('Activate your first rule'),
- target: 'sampling_rule_toggle',
- description: t(
- 'Start keeping what you need and dropping what you don’t - get up and running in minutes.'
- ),
- nextText: t('Activate Rule'),
- dismissText: t('Later'),
- hasNextGuide: true,
- },
- ],
- },
- {
- guide: 'create_conditional_rule',
- requiredTargets: ['add_conditional_rule'],
- dateThreshold: new Date('2022-07-05'),
- steps: [
- {
- title: t('Create a new sample rule'),
- target: 'add_conditional_rule',
- description: t(
- 'Define sample rules to retain the transactions you care about most such as the highest converting pages, critical API endpoints, or latency issues from your latest release. '
- ),
- dismissText: t('Enough already'),
- },
- ],
- },
- ];
- }
- function getDemoModeGuides(): GuidesContent {
- return [
- {
- guide: 'sidebar',
- requiredTargets: ['projects', 'issues'],
- priority: 1, // lower number means higher priority
- markOthersAsSeen: true,
- steps: [
- {
- title: t('Projects'),
- target: 'projects',
- description: t(
- `Create a project for any type of application you want to monitor.`
- ),
- },
- {
- title: t('Issues'),
- target: 'issues',
- description: t(
- `Here's a list of what's broken with your application. And everything you need to know to fix it.`
- ),
- },
- {
- title: t('Performance'),
- target: 'performance',
- description: t(
- `See slow faster. Trace slow-loading pages back to their API calls as well as surface all related errors.`
- ),
- },
- {
- title: t('Releases'),
- target: 'releases',
- description: t(
- `Track the health of every release, see differences between releases from crash analytics to adoption rates.`
- ),
- },
- {
- title: t('Discover'),
- target: 'discover',
- description: t(
- `Query and unlock insights into the health of your entire system and get answers to critical business questions all in one place.`
- ),
- nextText: t(`Got it`),
- },
- ],
- },
- {
- guide: 'issue_stream_v2',
- requiredTargets: ['issue_stream_title'],
- steps: [
- {
- title: t('Issue'),
- target: 'issue_stream_title',
- description: t(
- `Click here to get a full error report down to the line of code that caused the error.`
- ),
- },
- ],
- },
- {
- guide: 'issue_v2',
- requiredTargets: ['issue_details', 'exception'],
- steps: [
- {
- title: t('Details'),
- target: 'issue_details',
- description: t(`See the who, what, and where of every error right at the top`),
- },
- {
- title: t('Exception'),
- target: 'exception',
- description: t(
- `Source code right in the stack trace, so you don’t need to find it yourself.`
- ),
- },
- {
- title: t('Tags'),
- target: 'tags',
- description: t(
- `Tags help you quickly access related events and view the tag distribution for a set of events.`
- ),
- },
- {
- title: t('Breadcrumbs'),
- target: 'breadcrumbs',
- description: t(
- `Check out the play by play of what your user experienced till they encountered the exception.`
- ),
- },
- {
- title: t('Discover'),
- target: 'open_in_discover',
- description: t(
- `Uncover trends with Discover — analyze errors by URL, geography, device, browser, etc.`
- ),
- },
- ],
- },
- {
- guide: 'releases',
- requiredTargets: ['release_version'],
- steps: [
- {
- title: t('Release'),
- target: 'release_version',
- description: t(
- `Click here to easily identify new issues, regressions, and track the health of every release.`
- ),
- },
- ],
- },
- {
- guide: 'release_details',
- requiredTargets: ['release_chart'],
- steps: [
- {
- title: t('Chart'),
- target: 'release_chart',
- description: t(`Click and drag to zoom in on a specific section of the chart.`),
- },
- {
- title: t('Discover'),
- target: 'release_issues_open_in_discover',
- description: t(`Analyze these errors by URL, geography, device, browser, etc.`),
- },
- {
- title: t('Discover'),
- target: 'release_transactions_open_in_discover',
- description: t(
- `Analyze these performance issues by URL, geography, device, browser, etc.`
- ),
- },
- ],
- },
- {
- guide: 'discover_landing',
- requiredTargets: ['discover_landing_header'],
- steps: [
- {
- title: t('Discover'),
- target: 'discover_landing_header',
- description: t(
- `Click into any of the queries below to identify trends in event data.`
- ),
- },
- ],
- },
- {
- guide: 'discover_event_view',
- requiredTargets: ['create_alert_from_discover'],
- steps: [
- {
- title: t('Create Alert'),
- target: 'create_alert_from_discover',
- description: t(
- `Create an alert based on this query to get notified when an event exceeds user-defined thresholds.`
- ),
- },
- {
- title: t('Columns'),
- target: 'columns_header_button',
- description: t(
- `There's a whole lot more to... _discover_. View all the query conditions.`
- ),
- },
- ],
- },
- {
- guide: 'transaction_details',
- requiredTargets: ['span_tree'],
- steps: [
- {
- title: t('Span Tree'),
- target: 'span_tree',
- description: t(
- `Expand the spans to see span details from start date, end date to the operation.`
- ),
- },
- {
- title: t('Breadcrumbs'),
- target: 'breadcrumbs',
- description: t(
- `Check out the play by play of what your user experienced till they encountered the performance issue.`
- ),
- },
- ],
- },
- ];
- }
|