12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import {Fragment} from 'react';
- import {Layout, LayoutProps} from 'sentry/components/onboarding/gettingStartedDoc/layout';
- import {ModuleProps} from 'sentry/components/onboarding/gettingStartedDoc/sdkDocumentation';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {t, tct} from 'sentry/locale';
- // Configuration Start
- const introduction = (
- <Fragment>
- {t('In Rails, all uncaught exceptions will be automatically reported.')}
- {t('We support Rails 5 and newer.')}
- </Fragment>
- );
- export const steps = ({
- dsn,
- }: {
- dsn?: string;
- } = {}): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: (
- <p>
- {tct(
- 'Add [sentryRubyCode:sentry-ruby] and [sentryRailsCode:sentry-rails] to your [sentryGemfileCode:Gemfile]:',
- {
- sentryRubyCode: <code />,
- sentryRailsCode: <code />,
- sentryGemfileCode: <code />,
- }
- )}
- </p>
- ),
- configurations: [
- {
- language: 'ruby',
- code: `
- gem "sentry-ruby"
- gem "sentry-rails"
- `,
- },
- ],
- },
- {
- type: StepType.CONFIGURE,
- description: (
- <p>
- {tct('Initialize the SDK within your [code:config/initializers/sentry.rb]:', {
- code: <code />,
- })}
- </p>
- ),
- configurations: [
- {
- language: 'ruby',
- code: `
- Sentry.init do |config|
- config.dsn = '${dsn}'
- config.breadcrumbs_logger = [:active_support_logger, :http_logger]
- # Set traces_sample_rate to 1.0 to capture 100%
- # of transactions for performance monitoring.
- # We recommend adjusting this value in production.
- config.traces_sample_rate = 1.0
- # or
- config.traces_sampler = lambda do |context|
- true
- end
- end
- `,
- },
- ],
- },
- {
- title: t('Caveats'),
- description: (
- <p>
- {tct(
- 'Currently, custom exception applications [code:(config.exceptions_app)] are not supported. If you are using a custom exception app, you must manually integrate Sentry yourself.',
- {
- code: <code />,
- }
- )}
- </p>
- ),
- },
- ];
- // Configuration End
- export function GettingStartedWithRubyRails({dsn, ...props}: ModuleProps) {
- return <Layout steps={steps({dsn})} introduction={introduction} {...props} />;
- }
- export default GettingStartedWithRubyRails;
|