Skip to content

Commit 55cf7d2

Browse files
authored
feat(dynamic-sampling): Improve check endpoint (#51434)
1 parent 76f945b commit 55cf7d2

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

src/sentry/tasks/check_am2_compatibility.py

+32-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# The list is defined here:
2020
# https://docs.sentry.io/product/performance/performance-at-scale/getting-started
2121
SUPPORTED_SDK_VERSIONS = {
22+
# Python
2223
"sentry-python": "1.7.2",
2324
"sentry.python.tornado": "1.7.2",
2425
"sentry.python.starlette": "1.7.2",
@@ -30,6 +31,7 @@
3031
"sentry.python.aws_lambda": "1.7.2",
3132
"sentry.python.aiohttp": "1.7.2",
3233
"sentry.python": "1.7.2",
34+
# JavaScript
3335
"sentry-browser": "7.6.0",
3436
"sentry.javascript.angular": "7.6.0",
3537
"sentry.javascript.browser": "7.6.0",
@@ -41,21 +43,30 @@
4143
"sentry.javascript.serverless": "7.6.0",
4244
"sentry.javascript.svelte": "7.6.0",
4345
"sentry.javascript.vue": "7.6.0",
46+
"sentry.javascript.node": "7.6.0",
47+
"sentry.javascript.angular-ivy": "7.6.0",
48+
"sentry.javascript.sveltekit": "7.6.0",
49+
# Apple
4450
"sentry-cocoa": "7.23.0",
4551
"sentry-objc": "7.23.0",
4652
"sentry-swift": "7.23.0",
47-
"sentry.cocoa": "7.23.0",
53+
"sentry.cocoa": "7.18.0",
4854
"sentry.swift": "7.23.0",
4955
"SentrySwift": "7.23.0",
56+
# Android
5057
"sentry-android": "6.5.0",
5158
"sentry.java.android.timber": "6.5.0",
5259
"sentry.java.android": "6.5.0",
5360
"sentry.native.android": "6.5.0",
61+
# React Native
5462
"sentry-react-native": "4.3.0",
5563
"sentry.cocoa.react-native": "4.3.0",
5664
"sentry.java.android.react-native": "4.3.0",
5765
"sentry.javascript.react-native": "4.3.0",
5866
"sentry.native.android.react-native": "4.3.0",
67+
"sentry.javascript.react-native.expo": "6.0.0",
68+
"sentry.javascript.react.expo": "6.0.0",
69+
# Dart and Flutter
5970
"dart": "6.11.0",
6071
"dart-sentry-client": "6.11.0",
6172
"sentry.dart": "6.11.0",
@@ -65,19 +76,24 @@
6576
"sentry.java.android.flutter": "6.11.0",
6677
"sentry.native.android.flutter": "6.11.0",
6778
"sentry.dart.browser": "6.11.0",
79+
# PHP
6880
"sentry-php": "3.9.0",
6981
"sentry.php": "3.9.0",
82+
# Laravel
7083
"sentry-laravel": "3.0.0",
7184
"sentry.php.laravel": "3.0.0",
85+
# Symfony
7286
"sentry-symfony": "4.4.0",
7387
"sentry.php.symfony": "4.4.0",
7488
"Symphony.SentryClient": "4.4.0",
89+
# Ruby
7590
"sentry-ruby": "5.5.0",
7691
"sentry.ruby": "5.5.0",
7792
"sentry.ruby.delayed_job": "5.5.0",
7893
"sentry.ruby.rails": "5.5.0",
7994
"sentry.ruby.resque": "5.5.0",
8095
"sentry.ruby.sidekiq": "5.5.0",
96+
# Java
8197
"sentry-java": "6.5.0",
8298
"sentry.java": "6.5.0",
8399
"sentry.java.jul": "6.5.0",
@@ -86,6 +102,8 @@
86102
"sentry.java.spring": "6.5.0",
87103
"sentry.java.spring-boot": "6.5.0",
88104
"sentry.java.spring-boot.jakarta": "6.5.0",
105+
"sentry.java.spring.jakarta": "6.5.0",
106+
# .NET
89107
"sentry.aspnetcore": "3.22.0",
90108
"Sentry.AspNetCore": "3.22.0",
91109
"sentry.dotnet": "3.22.0",
@@ -109,6 +127,11 @@
109127
"Sentry.UWP": "3.22.0",
110128
"SentryDotNet": "3.22.0",
111129
"SentryDotNet.AspNetCore": "3.22.0",
130+
# Unity
131+
"sentry.dotnet.unity": "0.24.0",
132+
"sentry.cocoa.unity": "0.24.0",
133+
"sentry.java.android.unity": "0.24.0",
134+
# Go
112135
"sentry.go": "0.16.0",
113136
}
114137

@@ -117,12 +140,20 @@
117140

118141
# Conditions that are excluded from the widgets query.
119142
EXCLUDED_CONDITIONS = [
143+
# Match specific tags with values.
120144
"event.type:error",
121145
"!event.type:transaction",
122146
"event.type:csp",
123147
"event.type:default",
148+
# Match specific tags.
124149
"handled:",
125150
"unhandled:",
151+
"culprit:",
152+
"issue:",
153+
"level:",
154+
"unreal.crash_type:",
155+
# Match multiple tags that contain this.
156+
"stack.",
126157
"error.",
127158
]
128159

0 commit comments

Comments
 (0)