platforms.tsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. import type {PlatformIntegration} from 'sentry/types';
  2. // If you update items of this list, please remember to update the "GETTING_STARTED_DOCS_PLATFORMS" list
  3. // in the 'src/sentry/models/project.py' file. This way, they'll work together correctly.
  4. // Otherwise, creating a project will cause an error in the backend, saying "Invalid platform".
  5. export const platforms: PlatformIntegration[] = [
  6. {
  7. id: 'android',
  8. name: 'Android',
  9. type: 'framework',
  10. language: 'android',
  11. link: 'https://docs.sentry.io/platforms/android/',
  12. },
  13. {
  14. id: 'apple',
  15. name: 'Apple',
  16. type: 'language',
  17. language: 'apple',
  18. link: 'https://docs.sentry.io/platforms/apple/',
  19. },
  20. {
  21. id: 'apple-ios',
  22. name: 'iOS',
  23. type: 'language',
  24. language: 'apple',
  25. link: 'https://docs.sentry.io/platforms/apple/',
  26. },
  27. {
  28. id: 'apple-macos',
  29. name: 'macOS',
  30. type: 'language',
  31. language: 'apple',
  32. link: 'https://docs.sentry.io/platforms/apple/',
  33. },
  34. {
  35. id: 'bun',
  36. name: 'Bun',
  37. type: 'language',
  38. language: 'bun',
  39. link: 'https://docs.sentry.io/platforms/javascript/guides/bun/',
  40. },
  41. {
  42. id: 'capacitor',
  43. name: 'Capacitor',
  44. type: 'framework',
  45. language: 'capacitor',
  46. link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/',
  47. },
  48. {
  49. id: 'cordova',
  50. name: 'Cordova',
  51. type: 'language',
  52. language: 'cordova',
  53. link: 'https://docs.sentry.io/platforms/javascript/guides/cordova/',
  54. },
  55. {
  56. id: 'dart',
  57. name: 'Dart',
  58. type: 'framework',
  59. language: 'dart',
  60. link: 'https://docs.sentry.io/platforms/dart/',
  61. },
  62. {
  63. id: 'dotnet',
  64. name: '.NET',
  65. type: 'language',
  66. language: 'dotnet',
  67. link: 'https://docs.sentry.io/platforms/dotnet/',
  68. },
  69. {
  70. id: 'dotnet-aspnet',
  71. name: 'ASP.NET',
  72. type: 'framework',
  73. language: 'dotnet',
  74. link: 'https://docs.sentry.io/platforms/dotnet/guides/aspnet/',
  75. },
  76. {
  77. id: 'dotnet-aspnetcore',
  78. name: 'ASP.NET Core',
  79. type: 'framework',
  80. language: 'dotnet',
  81. link: 'https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/',
  82. },
  83. {
  84. id: 'dotnet-awslambda',
  85. name: 'AWS Lambda (.NET)',
  86. type: 'framework',
  87. language: 'dotnet',
  88. link: 'https://docs.sentry.io/platforms/dotnet/guides/aws-lambda/',
  89. },
  90. {
  91. id: 'dotnet-gcpfunctions',
  92. name: 'Google Cloud Functions (.NET)',
  93. type: 'framework',
  94. language: 'dotnet',
  95. link: 'https://docs.sentry.io/platforms/dotnet/guides/google-cloud-functions/',
  96. },
  97. {
  98. id: 'dotnet-maui',
  99. name: 'Multi-platform App UI (MAUI)',
  100. type: 'framework',
  101. language: 'dotnet',
  102. link: 'https://docs.sentry.io/platforms/dotnet/guides/maui/',
  103. },
  104. {
  105. id: 'dotnet-uwp',
  106. name: 'UWP',
  107. type: 'framework',
  108. language: 'dotnet',
  109. link: 'https://docs.sentry.io/platforms/dotnet/guides/uwp/',
  110. },
  111. {
  112. id: 'dotnet-winforms',
  113. name: 'Windows Forms',
  114. type: 'framework',
  115. language: 'dotnet',
  116. link: 'https://docs.sentry.io/platforms/dotnet/guides/winforms/',
  117. },
  118. {
  119. id: 'dotnet-wpf',
  120. name: 'WPF',
  121. type: 'framework',
  122. language: 'dotnet',
  123. link: 'https://docs.sentry.io/platforms/dotnet/guides/wpf/',
  124. },
  125. {
  126. id: 'dotnet-xamarin',
  127. name: 'Xamarin',
  128. type: 'framework',
  129. language: 'dotnet',
  130. link: 'https://docs.sentry.io/platforms/dotnet/guides/xamarin/',
  131. },
  132. {
  133. id: 'electron',
  134. name: 'Electron',
  135. type: 'language',
  136. language: 'electron',
  137. link: 'https://docs.sentry.io/platforms/javascript/guides/electron/',
  138. },
  139. {
  140. id: 'elixir',
  141. name: 'Elixir',
  142. type: 'language',
  143. language: 'elixir',
  144. link: 'https://docs.sentry.io/platforms/elixir/',
  145. },
  146. {
  147. id: 'flutter',
  148. name: 'Flutter',
  149. type: 'framework',
  150. language: 'flutter',
  151. link: 'https://docs.sentry.io/platforms/flutter/',
  152. },
  153. {
  154. id: 'go',
  155. link: 'https://docs.sentry.io/platforms/go/',
  156. name: 'Go',
  157. type: 'language',
  158. language: 'go',
  159. },
  160. {
  161. link: 'https://docs.sentry.io/platforms/go/guides/echo/',
  162. type: 'framework',
  163. id: 'go-echo',
  164. name: 'Echo',
  165. language: 'go',
  166. },
  167. {
  168. link: 'https://docs.sentry.io/platforms/go/guides/fasthttp/',
  169. type: 'framework',
  170. id: 'go-fasthttp',
  171. name: 'FastHTTP',
  172. language: 'go',
  173. },
  174. {
  175. link: 'https://docs.sentry.io/platforms/go/guides/gin/',
  176. type: 'framework',
  177. id: 'go-gin',
  178. name: 'Gin',
  179. language: 'go',
  180. },
  181. {
  182. link: 'https://docs.sentry.io/platforms/go/guides/http/',
  183. type: 'framework',
  184. id: 'go-http',
  185. name: 'Net/Http',
  186. language: 'go',
  187. },
  188. {
  189. link: 'https://docs.sentry.io/platforms/go/guides/iris',
  190. type: 'framework',
  191. id: 'go-iris',
  192. name: 'Iris',
  193. language: 'go',
  194. },
  195. {
  196. link: 'https://docs.sentry.io/platforms/go/guides/martini/',
  197. type: 'framework',
  198. id: 'go-martini',
  199. name: 'Martini',
  200. language: 'go',
  201. },
  202. {
  203. link: 'https://docs.sentry.io/platforms/go/guides/negroni/',
  204. type: 'framework',
  205. id: 'go-negroni',
  206. name: 'Negroni',
  207. language: 'go',
  208. },
  209. {
  210. id: 'ionic',
  211. name: 'Ionic',
  212. type: 'framework',
  213. language: 'ionic',
  214. link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/',
  215. },
  216. {
  217. id: 'java',
  218. name: 'Java',
  219. type: 'language',
  220. language: 'java',
  221. link: 'https://docs.sentry.io/platforms/java/',
  222. },
  223. {
  224. id: 'java-log4j2',
  225. name: 'Log4j 2.x',
  226. type: 'framework',
  227. language: 'java',
  228. link: 'https://docs.sentry.io/platforms/java/guides/log4j2/',
  229. },
  230. {
  231. id: 'java-logback',
  232. name: 'Logback',
  233. type: 'framework',
  234. language: 'java',
  235. link: 'https://docs.sentry.io/platforms/java/guides/logback/',
  236. },
  237. {
  238. id: 'java-spring',
  239. name: 'Spring',
  240. type: 'framework',
  241. language: 'java',
  242. link: 'https://https://docs.sentry.io/platforms/java/guides/spring/',
  243. },
  244. {
  245. id: 'java-spring-boot',
  246. name: 'Spring Boot',
  247. type: 'framework',
  248. language: 'java',
  249. link: 'https://docs.sentry.io/platforms/java/guides/spring-boot/',
  250. },
  251. {
  252. id: 'javascript',
  253. name: 'Browser JavaScript',
  254. type: 'language',
  255. language: 'javascript',
  256. link: 'https://docs.sentry.io/platforms/javascript/',
  257. },
  258. {
  259. id: 'javascript-angular',
  260. name: 'Angular',
  261. type: 'framework',
  262. language: 'javascript',
  263. link: 'https://docs.sentry.io/platforms/javascript/guides/angular/',
  264. },
  265. {
  266. id: 'javascript-astro',
  267. name: 'Astro',
  268. type: 'framework',
  269. language: 'javascript',
  270. link: 'https://docs.sentry.io/platforms/javascript/guides/astro/',
  271. },
  272. {
  273. id: 'javascript-ember',
  274. name: 'Ember',
  275. type: 'framework',
  276. language: 'javascript',
  277. link: 'https://docs.sentry.io/platforms/javascript/guides/ember/',
  278. },
  279. {
  280. id: 'javascript-gatsby',
  281. name: 'Gatsby',
  282. type: 'framework',
  283. language: 'javascript',
  284. link: 'https://docs.sentry.io/platforms/javascript/guides/gatsby/',
  285. },
  286. {
  287. id: 'javascript-nextjs',
  288. name: 'Next.js',
  289. type: 'framework',
  290. language: 'javascript',
  291. link: 'https://docs.sentry.io/platforms/javascript/guides/nextjs/',
  292. },
  293. {
  294. id: 'javascript-react',
  295. name: 'React',
  296. type: 'framework',
  297. language: 'javascript',
  298. link: 'https://docs.sentry.io/platforms/javascript/guides/react/',
  299. },
  300. {
  301. id: 'javascript-remix',
  302. name: 'Remix',
  303. type: 'framework',
  304. language: 'javascript',
  305. link: 'https://docs.sentry.io/platforms/javascript/guides/remix/',
  306. },
  307. {
  308. id: 'javascript-svelte',
  309. name: 'Svelte',
  310. type: 'framework',
  311. language: 'javascript',
  312. link: 'https://docs.sentry.io/platforms/javascript/guides/svelte/',
  313. },
  314. {
  315. id: 'javascript-sveltekit',
  316. name: 'SvelteKit',
  317. type: 'framework',
  318. language: 'javascript',
  319. link: 'https://docs.sentry.io/platforms/javascript/guides/sveltekit/',
  320. },
  321. {
  322. id: 'javascript-vue',
  323. name: 'Vue',
  324. type: 'framework',
  325. language: 'javascript',
  326. link: 'https://docs.sentry.io/platforms/javascript/guides/vue/',
  327. },
  328. {
  329. id: 'kotlin',
  330. name: 'Kotlin',
  331. type: 'language',
  332. language: 'kotlin',
  333. link: 'https://docs.sentry.io/platforms/kotlin/',
  334. },
  335. {
  336. id: 'minidump',
  337. name: 'Minidump',
  338. type: 'framework',
  339. language: 'minidump',
  340. link: 'https://docs.sentry.io/platforms/native/minidump/',
  341. },
  342. {
  343. id: 'native',
  344. name: 'Native',
  345. type: 'language',
  346. language: 'native',
  347. link: 'https://docs.sentry.io/platforms/native/',
  348. },
  349. {
  350. id: 'native-qt',
  351. name: 'Qt',
  352. type: 'framework',
  353. language: 'native',
  354. link: 'https://docs.sentry.io/platforms/native/guides/qt/',
  355. },
  356. {
  357. id: 'node',
  358. name: 'Node.js',
  359. type: 'language',
  360. language: 'node',
  361. link: 'https://docs.sentry.io/platforms/node/',
  362. },
  363. {
  364. id: 'node-awslambda',
  365. name: 'AWS Lambda (Node)',
  366. type: 'framework',
  367. language: 'node',
  368. link: 'https://docs.sentry.io/platforms/node/guides/aws-lambda/',
  369. },
  370. {
  371. id: 'node-azurefunctions',
  372. name: 'Azure Functions (Node)',
  373. type: 'framework',
  374. language: 'node',
  375. link: 'https://docs.sentry.io/platforms/node/guides/azure-functions/',
  376. },
  377. {
  378. id: 'node-connect',
  379. name: 'Connect',
  380. type: 'framework',
  381. language: 'node',
  382. link: 'https://docs.sentry.io/platforms/node/guides/connect/',
  383. },
  384. {
  385. id: 'node-express',
  386. name: 'Express',
  387. type: 'framework',
  388. language: 'node',
  389. link: 'https://docs.sentry.io/platforms/node/guides/express/',
  390. },
  391. {
  392. id: 'node-gcpfunctions',
  393. name: 'Google Cloud Functions (Node)',
  394. type: 'framework',
  395. language: 'node',
  396. link: 'https://docs.sentry.io/platforms/node/guides/gcp-functions/',
  397. },
  398. {
  399. id: 'node-koa',
  400. name: 'Koa',
  401. type: 'framework',
  402. language: 'node',
  403. link: 'https://docs.sentry.io/platforms/node/guides/koa/',
  404. },
  405. {
  406. id: 'node-serverlesscloud',
  407. name: 'Serverless (Node)',
  408. type: 'framework',
  409. language: 'node',
  410. link: 'https://docs.sentry.io/platforms/node/guides/serverless-cloud/',
  411. },
  412. {
  413. id: 'php',
  414. name: 'PHP',
  415. type: 'language',
  416. language: 'php',
  417. link: 'https://docs.sentry.io/platforms/php/',
  418. },
  419. {
  420. id: 'php-laravel',
  421. name: 'Laravel',
  422. type: 'framework',
  423. language: 'php',
  424. link: 'https://docs.sentry.io/platforms/php/guides/laravel/',
  425. },
  426. {
  427. id: 'php-symfony',
  428. name: 'Symfony',
  429. type: 'framework',
  430. language: 'php',
  431. link: 'https://docs.sentry.io/platforms/php/guides/symfony/',
  432. },
  433. {
  434. id: 'python',
  435. name: 'Python',
  436. type: 'language',
  437. language: 'python',
  438. link: 'https://docs.sentry.io/platforms/python/',
  439. },
  440. {
  441. id: 'python-aiohttp',
  442. name: 'AIOHTTP',
  443. type: 'framework',
  444. language: 'python',
  445. link: 'https://docs.sentry.io/platforms/python/guides/aiohttp/',
  446. },
  447. {
  448. id: 'python-asgi',
  449. name: 'ASGI',
  450. type: 'framework',
  451. language: 'python',
  452. link: 'https://docs.sentry.io/platforms/python/guides/asgi/',
  453. },
  454. {
  455. id: 'python-awslambda',
  456. name: 'AWS Lambda (Python)',
  457. type: 'framework',
  458. language: 'python',
  459. link: 'https://docs.sentry.io/platforms/python/guides/aws-lambda/',
  460. },
  461. {
  462. id: 'python-bottle',
  463. name: 'Bottle',
  464. type: 'framework',
  465. language: 'python',
  466. link: 'https://docs.sentry.io/platforms/python/guides/bottle/',
  467. },
  468. {
  469. id: 'python-celery',
  470. name: 'Celery',
  471. type: 'library',
  472. language: 'python',
  473. link: 'https://docs.sentry.io/platforms/python/guides/celery/',
  474. },
  475. {
  476. id: 'python-chalice',
  477. name: 'Chalice',
  478. type: 'framework',
  479. language: 'python',
  480. link: 'https://docs.sentry.io/platforms/python/guides/chalice/',
  481. },
  482. {
  483. id: 'python-django',
  484. name: 'Django',
  485. type: 'framework',
  486. language: 'python',
  487. link: 'https://docs.sentry.io/platforms/python/guides/django/',
  488. },
  489. {
  490. id: 'python-falcon',
  491. name: 'Falcon',
  492. type: 'framework',
  493. language: 'python',
  494. link: 'https://docs.sentry.io/platforms/python/guides/falcon/',
  495. },
  496. {
  497. id: 'python-fastapi',
  498. name: 'FastAPI',
  499. type: 'framework',
  500. language: 'python',
  501. link: 'https://docs.sentry.io/platforms/python/guides/fastapi/',
  502. },
  503. {
  504. id: 'python-flask',
  505. name: 'Flask',
  506. type: 'framework',
  507. language: 'python',
  508. link: 'https://docs.sentry.io/platforms/python/guides/flask/',
  509. },
  510. {
  511. id: 'python-gcpfunctions',
  512. name: 'Google Cloud Functions (Python)',
  513. type: 'framework',
  514. language: 'python',
  515. link: 'https://docs.sentry.io/platforms/python/guides/gcp-functions/',
  516. },
  517. {
  518. id: 'python-pylons',
  519. name: 'Pylons',
  520. type: 'framework',
  521. language: 'python',
  522. link: 'https://docs.sentry.io/platforms/python/legacy-sdk/integrations/pylons/',
  523. },
  524. {
  525. id: 'python-pymongo',
  526. name: 'PyMongo',
  527. type: 'library',
  528. language: 'python',
  529. link: 'https://docs.sentry.io/platforms/python/guides/pymongo/',
  530. },
  531. {
  532. id: 'python-pyramid',
  533. name: 'Pyramid',
  534. type: 'framework',
  535. language: 'python',
  536. link: 'https://docs.sentry.io/platforms/python/pyramid/',
  537. },
  538. {
  539. id: 'python-quart',
  540. name: 'Quart',
  541. type: 'framework',
  542. language: 'python',
  543. link: 'https://docs.sentry.io/platforms/python/guides/quart/',
  544. },
  545. {
  546. id: 'python-rq',
  547. name: 'RQ (Redis Queue)',
  548. type: 'library',
  549. language: 'python',
  550. link: 'https://docs.sentry.io/platforms/python/guides/rq/',
  551. },
  552. {
  553. id: 'python-sanic',
  554. name: 'Sanic',
  555. type: 'framework',
  556. language: 'python',
  557. link: 'https://docs.sentry.io/platforms/python/guides/sanic/',
  558. },
  559. {
  560. id: 'python-serverless',
  561. name: 'Serverless',
  562. type: 'framework',
  563. language: 'python',
  564. link: 'https://docs.sentry.io/platforms/python/guides/serverless/',
  565. },
  566. {
  567. id: 'python-starlette',
  568. name: 'Starlette',
  569. type: 'framework',
  570. language: 'python',
  571. link: 'https://docs.sentry.io/platforms/python/guides/starlette/',
  572. },
  573. {
  574. id: 'python-tornado',
  575. name: 'Tornado',
  576. type: 'framework',
  577. language: 'python',
  578. link: 'https://docs.sentry.io/platforms/python/guides/tornado/',
  579. },
  580. {
  581. id: 'python-tryton',
  582. name: 'Tryton',
  583. type: 'framework',
  584. language: 'python',
  585. link: 'https://docs.sentry.io/platforms/python/guides/tryton/',
  586. },
  587. {
  588. id: 'python-wsgi',
  589. name: 'WSGI',
  590. type: 'framework',
  591. language: 'python',
  592. link: 'https://docs.sentry.io/platforms/python/guides/wsgi/',
  593. },
  594. {
  595. id: 'react-native',
  596. name: 'React Native',
  597. type: 'language',
  598. language: 'react-native',
  599. link: 'https://docs.sentry.io/platforms/react-native/',
  600. },
  601. {
  602. id: 'ruby',
  603. name: 'Ruby',
  604. type: 'language',
  605. language: 'ruby',
  606. link: 'https://docs.sentry.io/platforms/ruby/',
  607. },
  608. {
  609. id: 'ruby-rack',
  610. name: 'Rack Middleware',
  611. type: 'framework',
  612. language: 'ruby',
  613. link: 'https://docs.sentry.io/platforms/ruby/guides/rack/',
  614. },
  615. {
  616. id: 'ruby-rails',
  617. name: 'Rails',
  618. type: 'framework',
  619. language: 'ruby',
  620. link: 'https://docs.sentry.io/platforms/ruby/guides/rails/',
  621. },
  622. {
  623. id: 'rust',
  624. name: 'Rust',
  625. type: 'language',
  626. language: 'rust',
  627. link: 'https://docs.sentry.io/platforms/rust/',
  628. },
  629. {
  630. id: 'unity',
  631. name: 'Unity',
  632. type: 'framework',
  633. language: 'unity',
  634. link: 'https://docs.sentry.io/platforms/unity/',
  635. },
  636. {
  637. id: 'unreal',
  638. name: 'Unreal Engine',
  639. type: 'framework',
  640. language: 'unreal',
  641. link: 'https://docs.sentry.io/platforms/unreal/',
  642. },
  643. ];
  644. export const otherPlatform: PlatformIntegration = {
  645. id: 'other',
  646. name: 'Other',
  647. type: 'language',
  648. language: 'other',
  649. link: 'https://docs.sentry.io/platforms/',
  650. };
  651. /**
  652. * Array of all platforms that are displayed in the project creation flow.
  653. */
  654. const allPlatforms = [...platforms, otherPlatform];
  655. export default allPlatforms;