platforms.tsx 17 KB

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