bottle.tsx 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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[bottle]'`;
  14. const getSdkSetupSnippet = (params: Params) => `
  15. import sentry_sdk
  16. sentry_sdk.init(
  17. dsn="${params.dsn}",${
  18. params.isPerformanceSelected
  19. ? `
  20. # Set traces_sample_rate to 1.0 to capture 100%
  21. # of transactions for performance monitoring.
  22. traces_sample_rate=1.0,`
  23. : ''
  24. }${
  25. params.isProfilingSelected
  26. ? `
  27. # Set profiles_sample_rate to 1.0 to profile 100%
  28. # of sampled transactions.
  29. # We recommend adjusting this value in production.
  30. profiles_sample_rate=1.0,`
  31. : ''
  32. }
  33. )
  34. `;
  35. const onboarding: OnboardingConfig = {
  36. introduction: () =>
  37. tct('The Bottle integration adds support for the [link:Bottle Web Framework].', {
  38. link: <ExternalLink href="https://bottlepy.org/docs/dev/" />,
  39. }),
  40. install: (params: Params) => [
  41. {
  42. type: StepType.INSTALL,
  43. description: tct(
  44. 'Install [sentrySdkCode:sentry-sdk] from PyPI with the [sentryBotteCode:bottle] extra:',
  45. {
  46. sentrySdkCode: <code />,
  47. sentryBotteCode: <code />,
  48. }
  49. ),
  50. configurations: [
  51. {
  52. description: params.isProfilingSelected
  53. ? tct(
  54. 'You need a minimum version [codeVersion:1.18.0] of the [codePackage:sentry-python] SDK for the profiling feature.',
  55. {
  56. codeVersion: <code />,
  57. codePackage: <code />,
  58. }
  59. )
  60. : undefined,
  61. language: 'bash',
  62. code: getInstallSnippet(),
  63. },
  64. ],
  65. },
  66. ],
  67. configure: (params: Params) => [
  68. {
  69. type: StepType.CONFIGURE,
  70. description: tct(
  71. 'If you have the [code:bottle] package in your dependencies, the Bottle integration will be enabled automatically when you initialize the Sentry SDK. Initialize the Sentry SDK before your app has been initialized:',
  72. {
  73. code: <code />,
  74. }
  75. ),
  76. configurations: [
  77. {
  78. language: 'python',
  79. code: `from bottle import Bottle
  80. ${getSdkSetupSnippet(params)}
  81. app = Bottle()
  82. `,
  83. },
  84. ],
  85. },
  86. ],
  87. verify: (params: Params) => [
  88. {
  89. type: StepType.VERIFY,
  90. description: t(
  91. 'To verify that everything is working, trigger an error on purpose:'
  92. ),
  93. configurations: [
  94. {
  95. language: 'python',
  96. code: `from bottle import Bottle, run
  97. ${getSdkSetupSnippet(params)}
  98. app = Bottle()
  99. @app.route('/')
  100. def hello():
  101. 1/0
  102. return "Hello World!"
  103. run(app, host='localhost', port=8000)
  104. `,
  105. },
  106. ],
  107. additionalInfo: (
  108. <span>
  109. <p>
  110. {tct(
  111. 'When you point your browser to [link:http://localhost:8000/] a transaction in the Performance section of Sentry will be created.',
  112. {
  113. link: <ExternalLink href="http://localhost:8000/" />,
  114. }
  115. )}
  116. </p>
  117. <p>
  118. {t(
  119. 'Additionally, an error event will be sent to Sentry and will be connected to the transaction.'
  120. )}
  121. </p>
  122. <p>{t('It takes a couple of moments for the data to appear in Sentry.')}</p>
  123. </span>
  124. ),
  125. },
  126. ],
  127. nextSteps: () => [],
  128. };
  129. const docs: Docs = {
  130. onboarding,
  131. replayOnboardingJsLoader,
  132. customMetricsOnboarding: getPythonMetricsOnboarding({
  133. installSnippet: getInstallSnippet(),
  134. }),
  135. crashReportOnboarding: crashReportOnboardingPython,
  136. };
  137. export default docs;