12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import styled from '@emotion/styled';
- import {LinkButton} from 'sentry/components/button';
- import PageAlertBar from 'sentry/components/pageAlertBar';
- import {IconLightning} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types/organization';
- import {trackAnalytics} from 'sentry/utils/analytics';
- export default function FinishSetupAlert({
- organization,
- projectId,
- }: {
- organization: Organization;
- projectId: string;
- }) {
- return (
- <PageAlertBar>
- <IconLightning />
- <TextWrapper>
- {t(
- 'You are viewing a sample transaction. Configure performance to start viewing real transactions.'
- )}
- </TextWrapper>
- <LinkButton
- size="xs"
- priority="primary"
- external
- href="https://docs.sentry.io/performance-monitoring/getting-started/"
- onClick={() =>
- trackAnalytics('growth.sample_transaction_docs_link_clicked', {
- project_id: projectId,
- organization,
- })
- }
- >
- {t('Get Started')}
- </LinkButton>
- </PageAlertBar>
- );
- }
- const TextWrapper = styled('span')`
- margin: 0 ${space(1)};
- `;
|