123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659 |
- import {PlatformIntegration} from 'sentry/types';
- // If you update items of this list, please remember to update the "GETTING_STARTED_DOCS_PLATFORMS" list
- // in the 'src/sentry/models/project.py' file. This way, they'll work together correctly.
- // Otherwise, creating a project will cause an error in the backend, saying "Invalid platform".
- const platforms: PlatformIntegration[] = [
- {
- id: 'android',
- name: 'Android',
- type: 'framework',
- language: 'android',
- link: 'https://docs.sentry.io/platforms/android/',
- },
- {
- id: 'apple',
- name: 'Apple',
- type: 'language',
- language: 'apple',
- link: 'https://docs.sentry.io/platforms/apple/',
- },
- {
- id: 'apple-ios',
- name: 'iOS',
- type: 'language',
- language: 'apple',
- link: 'https://docs.sentry.io/platforms/apple/',
- },
- {
- id: 'apple-macos',
- name: 'macOS',
- type: 'language',
- language: 'apple',
- link: 'https://docs.sentry.io/platforms/apple/',
- },
- {
- id: 'bun',
- name: 'Bun',
- type: 'language',
- language: 'bun',
- link: 'https://docs.sentry.io/platforms/javascript/guides/bun/',
- },
- {
- id: 'capacitor',
- name: 'Capacitor',
- type: 'framework',
- language: 'capacitor',
- link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/',
- },
- {
- id: 'cordova',
- name: 'Cordova',
- type: 'language',
- language: 'cordova',
- link: 'https://docs.sentry.io/platforms/javascript/guides/cordova/',
- },
- {
- id: 'dart',
- name: 'Dart',
- type: 'framework',
- language: 'dart',
- link: 'https://docs.sentry.io/platforms/dart/',
- },
- {
- id: 'dotnet',
- name: '.NET',
- type: 'language',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/',
- },
- {
- id: 'dotnet-aspnet',
- name: 'ASP.NET',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/aspnet/',
- },
- {
- id: 'dotnet-aspnetcore',
- name: 'ASP.NET Core',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/',
- },
- {
- id: 'dotnet-awslambda',
- name: 'AWS Lambda (.NET)',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/aws-lambda/',
- },
- {
- id: 'dotnet-gcpfunctions',
- name: 'Google Cloud Functions (.NET)',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/google-cloud-functions/',
- },
- {
- id: 'dotnet-maui',
- name: 'Multi-platform App UI (MAUI)',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/maui/',
- },
- {
- id: 'dotnet-uwp',
- name: 'UWP',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/uwp/',
- },
- {
- id: 'dotnet-winforms',
- name: 'Windows Forms',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/winforms/',
- },
- {
- id: 'dotnet-wpf',
- name: 'WPF',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/wpf/',
- },
- {
- id: 'dotnet-xamarin',
- name: 'Xamarin',
- type: 'framework',
- language: 'dotnet',
- link: 'https://docs.sentry.io/platforms/dotnet/guides/xamarin/',
- },
- {
- id: 'electron',
- name: 'Electron',
- type: 'language',
- language: 'electron',
- link: 'https://docs.sentry.io/platforms/javascript/guides/electron/',
- },
- {
- id: 'elixir',
- name: 'Elixir',
- type: 'language',
- language: 'elixir',
- link: 'https://docs.sentry.io/platforms/elixir/',
- },
- {
- id: 'flutter',
- name: 'Flutter',
- type: 'framework',
- language: 'flutter',
- link: 'https://docs.sentry.io/platforms/flutter/',
- },
- {
- id: 'go',
- link: 'https://docs.sentry.io/platforms/go/',
- name: 'Go',
- type: 'language',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/echo/',
- type: 'framework',
- id: 'go-echo',
- name: 'Echo',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/fasthttp/',
- type: 'framework',
- id: 'go-fasthttp',
- name: 'FastHTTP',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/gin/',
- type: 'framework',
- id: 'go-gin',
- name: 'Gin',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/http/',
- type: 'framework',
- id: 'go-http',
- name: 'Net/Http',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/iris',
- type: 'framework',
- id: 'go-iris',
- name: 'Iris',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/martini/',
- type: 'framework',
- id: 'go-martini',
- name: 'Martini',
- language: 'go',
- },
- {
- link: 'https://docs.sentry.io/platforms/go/guides/negroni/',
- type: 'framework',
- id: 'go-negroni',
- name: 'Negroni',
- language: 'go',
- },
- {
- id: 'ionic',
- name: 'Ionic',
- type: 'framework',
- language: 'ionic',
- link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/',
- },
- {
- id: 'java',
- name: 'Java',
- type: 'language',
- language: 'java',
- link: 'https://docs.sentry.io/platforms/java/',
- },
- {
- id: 'java-log4j2',
- name: 'Log4j 2.x',
- type: 'framework',
- language: 'java',
- link: 'https://docs.sentry.io/platforms/java/guides/log4j2/',
- },
- {
- id: 'java-logback',
- name: 'Logback',
- type: 'framework',
- language: 'java',
- link: 'https://docs.sentry.io/platforms/java/guides/logback/',
- },
- {
- id: 'java-spring',
- name: 'Spring',
- type: 'framework',
- language: 'java',
- link: 'https://https://docs.sentry.io/platforms/java/guides/spring/',
- },
- {
- id: 'java-spring-boot',
- name: 'Spring Boot',
- type: 'framework',
- language: 'java',
- link: 'https://docs.sentry.io/platforms/java/guides/spring-boot/',
- },
- {
- id: 'javascript',
- name: 'Browser JavaScript',
- type: 'language',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/',
- },
- {
- id: 'javascript-angular',
- name: 'Angular',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/angular/',
- },
- {
- id: 'javascript-astro',
- name: 'Astro',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/astro/',
- },
- {
- id: 'javascript-ember',
- name: 'Ember',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/ember/',
- },
- {
- id: 'javascript-gatsby',
- name: 'Gatsby',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/gatsby/',
- },
- {
- id: 'javascript-nextjs',
- name: 'Next.js',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/nextjs/',
- },
- {
- id: 'javascript-react',
- name: 'React',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/react/',
- },
- {
- id: 'javascript-remix',
- name: 'Remix',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/remix/',
- },
- {
- id: 'javascript-svelte',
- name: 'Svelte',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/svelte/',
- },
- {
- id: 'javascript-sveltekit',
- name: 'SvelteKit',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/sveltekit/',
- },
- {
- id: 'javascript-vue',
- name: 'Vue',
- type: 'framework',
- language: 'javascript',
- link: 'https://docs.sentry.io/platforms/javascript/guides/vue/',
- },
- {
- id: 'kotlin',
- name: 'Kotlin',
- type: 'language',
- language: 'kotlin',
- link: 'https://docs.sentry.io/platforms/kotlin/',
- },
- {
- id: 'minidump',
- name: 'Minidump',
- type: 'framework',
- language: 'minidump',
- link: 'https://docs.sentry.io/platforms/native/minidump/',
- },
- {
- id: 'native',
- name: 'Native',
- type: 'language',
- language: 'native',
- link: 'https://docs.sentry.io/platforms/native/',
- },
- {
- id: 'native-qt',
- name: 'Qt',
- type: 'framework',
- language: 'native',
- link: 'https://docs.sentry.io/platforms/native/guides/qt/',
- },
- {
- id: 'node',
- name: 'Node.js',
- type: 'language',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/',
- },
- {
- id: 'node-awslambda',
- name: 'AWS Lambda (Node)',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/aws-lambda/',
- },
- {
- id: 'node-azurefunctions',
- name: 'Azure Functions (Node)',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/azure-functions/',
- },
- {
- id: 'node-connect',
- name: 'Connect',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/connect/',
- },
- {
- id: 'node-express',
- name: 'Express',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/express/',
- },
- {
- id: 'node-gcpfunctions',
- name: 'Google Cloud Functions (Node)',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/gcp-functions/',
- },
- {
- id: 'node-koa',
- name: 'Koa',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/koa/',
- },
- {
- id: 'node-serverlesscloud',
- name: 'Serverless (Node)',
- type: 'framework',
- language: 'node',
- link: 'https://docs.sentry.io/platforms/node/guides/serverless-cloud/',
- },
- {
- id: 'php',
- name: 'PHP',
- type: 'language',
- language: 'php',
- link: 'https://docs.sentry.io/platforms/php/',
- },
- {
- id: 'php-laravel',
- name: 'Laravel',
- type: 'framework',
- language: 'php',
- link: 'https://docs.sentry.io/platforms/php/guides/laravel/',
- },
- {
- id: 'php-symfony',
- name: 'Symfony',
- type: 'framework',
- language: 'php',
- link: 'https://docs.sentry.io/platforms/php/guides/symfony/',
- },
- {
- id: 'python',
- name: 'Python',
- type: 'language',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/',
- },
- {
- id: 'python-aiohttp',
- name: 'AIOHTTP',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/aiohttp/',
- },
- {
- id: 'python-asgi',
- name: 'ASGI',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/asgi/',
- },
- {
- id: 'python-awslambda',
- name: 'AWS Lambda (Python)',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/aws-lambda/',
- },
- {
- id: 'python-bottle',
- name: 'Bottle',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/bottle/',
- },
- {
- id: 'python-celery',
- name: 'Celery',
- type: 'library',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/celery/',
- },
- {
- id: 'python-chalice',
- name: 'Chalice',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/chalice/',
- },
- {
- id: 'python-django',
- name: 'Django',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/django/',
- },
- {
- id: 'python-falcon',
- name: 'Falcon',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/falcon/',
- },
- {
- id: 'python-fastapi',
- name: 'FastAPI',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/fastapi/',
- },
- {
- id: 'python-flask',
- name: 'Flask',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/flask/',
- },
- {
- id: 'python-gcpfunctions',
- name: 'Google Cloud Functions (Python)',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/gcp-functions/',
- },
- {
- id: 'python-pylons',
- name: 'Pylons',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/legacy-sdk/integrations/pylons/',
- },
- {
- id: 'python-pymongo',
- name: 'PyMongo',
- type: 'library',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/pymongo/',
- },
- {
- id: 'python-pyramid',
- name: 'Pyramid',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/pyramid/',
- },
- {
- id: 'python-quart',
- name: 'Quart',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/quart/',
- },
- {
- id: 'python-rq',
- name: 'RQ (Redis Queue)',
- type: 'library',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/rq/',
- },
- {
- id: 'python-sanic',
- name: 'Sanic',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/sanic/',
- },
- {
- id: 'python-serverless',
- name: 'Serverless',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/serverless/',
- },
- {
- id: 'python-starlette',
- name: 'Starlette',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/starlette/',
- },
- {
- id: 'python-tornado',
- name: 'Tornado',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/tornado/',
- },
- {
- id: 'python-tryton',
- name: 'Tryton',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/tryton/',
- },
- {
- id: 'python-wsgi',
- name: 'WSGI',
- type: 'framework',
- language: 'python',
- link: 'https://docs.sentry.io/platforms/python/guides/wsgi/',
- },
- {
- id: 'react-native',
- name: 'React Native',
- type: 'language',
- language: 'react-native',
- link: 'https://docs.sentry.io/platforms/react-native/',
- },
- {
- id: 'ruby',
- name: 'Ruby',
- type: 'language',
- language: 'ruby',
- link: 'https://docs.sentry.io/platforms/ruby/',
- },
- {
- id: 'ruby-rack',
- name: 'Rack Middleware',
- type: 'framework',
- language: 'ruby',
- link: 'https://docs.sentry.io/platforms/ruby/guides/rack/',
- },
- {
- id: 'ruby-rails',
- name: 'Rails',
- type: 'framework',
- language: 'ruby',
- link: 'https://docs.sentry.io/platforms/ruby/guides/rails/',
- },
- {
- id: 'rust',
- name: 'Rust',
- type: 'language',
- language: 'rust',
- link: 'https://docs.sentry.io/platforms/rust/',
- },
- {
- id: 'unity',
- name: 'Unity',
- type: 'framework',
- language: 'unity',
- link: 'https://docs.sentry.io/platforms/unity/',
- },
- {
- id: 'unreal',
- name: 'Unreal Engine',
- type: 'framework',
- language: 'unreal',
- link: 'https://docs.sentry.io/platforms/unreal/',
- },
- ];
- export const otherPlatform: PlatformIntegration = {
- id: 'other',
- name: 'Other',
- type: 'language',
- language: 'other',
- link: 'https://docs.sentry.io/platforms/',
- };
- /**
- * Array of all platforms that are displayed in the project creation flow.
- */
- const allPlatforms = [...platforms, otherPlatform];
- export default allPlatforms;
|