fastapi.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import ExternalLink from 'sentry/components/links/externalLink';
  2. import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
  3. import type {
  4. Docs,
  5. DocsParams,
  6. OnboardingConfig,
  7. } from 'sentry/components/onboarding/gettingStartedDoc/types';
  8. import {getPythonMetricsOnboarding} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
  9. import replayOnboardingJsLoader from 'sentry/gettingStartedDocs/javascript/jsLoader/jsLoader';
  10. import {crashReportOnboardingPython} from 'sentry/gettingStartedDocs/python/python';
  11. import {t, tct} from 'sentry/locale';
  12. type Params = DocsParams;
  13. const getInstallSnippet = () => `pip install --upgrade 'sentry-sdk[fastapi]'`;
  14. const getSdkSetupSnippet = (params: Params) => `
  15. from fastapi import FastAPI
  16. import sentry_sdk
  17. sentry_sdk.init(
  18. dsn="${params.dsn}",${
  19. params.isPerformanceSelected
  20. ? `
  21. # Set traces_sample_rate to 1.0 to capture 100%
  22. # of transactions for performance monitoring.
  23. traces_sample_rate=1.0,`
  24. : ''
  25. }${
  26. params.isProfilingSelected
  27. ? `
  28. # Set profiles_sample_rate to 1.0 to profile 100%
  29. # of sampled transactions.
  30. # We recommend adjusting this value in production.
  31. profiles_sample_rate=1.0,`
  32. : ''
  33. }
  34. )
  35. `;
  36. const onboarding: OnboardingConfig = {
  37. introduction: () =>
  38. tct('The FastAPI integration adds support for the [link:FastAPI Framework].', {
  39. link: <ExternalLink href="https://fastapi.tiangolo.com/" />,
  40. }),
  41. install: (params: Params) => [
  42. {
  43. type: StepType.INSTALL,
  44. description: tct(
  45. 'Install [sentrySdkCode:sentry-sdk] from PyPI with the [sentryFastApiCode:fastapi] extra:',
  46. {
  47. sentrySdkCode: <code />,
  48. sentryFastApiCode: <code />,
  49. }
  50. ),
  51. configurations: [
  52. {
  53. description: params.isProfilingSelected
  54. ? tct(
  55. 'You need a minimum version [codeVersion:1.18.0] of the [codePackage:sentry-python] SDK for the profiling feature.',
  56. {
  57. codeVersion: <code />,
  58. codePackage: <code />,
  59. }
  60. )
  61. : undefined,
  62. language: 'bash',
  63. code: getInstallSnippet(),
  64. },
  65. ],
  66. },
  67. ],
  68. configure: (params: Params) => [
  69. {
  70. type: StepType.CONFIGURE,
  71. description: tct(
  72. 'If you have the [codeFastAPI:fastapi] package in your dependencies, the FastAPI integration will be enabled automatically when you initialize the Sentry SDK. Initialize the Sentry SDK before your app has been initialized:',
  73. {
  74. codeFastAPI: <code />,
  75. }
  76. ),
  77. configurations: [
  78. {
  79. language: 'python',
  80. code: `
  81. ${getSdkSetupSnippet(params)}
  82. app = FastAPI()
  83. `,
  84. },
  85. ],
  86. additionalInfo: tct(
  87. 'The above configuration captures both error and performance data. To reduce the volume of performance data captured, change [code:traces_sample_rate] to a value between 0 and 1.',
  88. {
  89. code: <code />,
  90. }
  91. ),
  92. },
  93. ],
  94. verify: (params: Params) => [
  95. {
  96. type: StepType.VERIFY,
  97. description: t(
  98. 'You can easily verify your Sentry installation by creating a route that triggers an error:'
  99. ),
  100. configurations: [
  101. {
  102. language: 'python',
  103. code: `
  104. ${getSdkSetupSnippet(params)}
  105. app = FastAPI()
  106. @app.get("/sentry-debug")
  107. async def trigger_error():
  108. division_by_zero = 1 / 0
  109. `,
  110. },
  111. ],
  112. additionalInfo: (
  113. <div>
  114. <p>
  115. {tct(
  116. 'When you point your browser to [link:http://localhost:8000/sentry-debug/] a transaction in the Performance section of Sentry will be created.',
  117. {
  118. link: <ExternalLink href="http://localhost:8000/sentry-debug/" />,
  119. }
  120. )}
  121. </p>
  122. <p>
  123. {t(
  124. 'Additionally, an error event will be sent to Sentry and will be connected to the transaction.'
  125. )}
  126. </p>
  127. <p>{t('It takes a couple of moments for the data to appear in Sentry.')}</p>
  128. </div>
  129. ),
  130. },
  131. ],
  132. nextSteps: () => [],
  133. };
  134. const docs: Docs = {
  135. onboarding,
  136. replayOnboardingJsLoader,
  137. customMetricsOnboarding: getPythonMetricsOnboarding({
  138. installSnippet: getInstallSnippet(),
  139. }),
  140. crashReportOnboarding: crashReportOnboardingPython,
  141. };
  142. export default docs;