Skip to content

Commit 9d9f2a4

Browse files
committed
Merge branch 'master' into feat/godot-debug-symbols
2 parents de9bc16 + b6213e4 commit 9d9f2a4

File tree

8 files changed

+19
-5
lines changed

8 files changed

+19
-5
lines changed

docs/platforms/android/overhead/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that increasing the max number of breadcrumbs **does not** improve performa
3636

3737
## Tracing and Performance Monitoring
3838

39-
As stated in our <Link to="/product/insights/overview/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
39+
As stated in our <Link to="/product/insights/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
4040

4141
## Profiling
4242

docs/platforms/apple/common/overhead/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Note that increasing the max number of breadcrumbs **does not** improve performa
4040

4141
## Tracing and Performance Monitoring
4242

43-
As stated in our <Link to="/product/insights/overview/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
43+
As stated in our <Link to="/product/insights/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
4444

4545
<PlatformSection supported={["apple.ios", "apple.macos"]}>
4646

docs/platforms/dart/overhead/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Note that increasing the max number of breadcrumbs **does not** improve performa
3030

3131
## Tracing and Performance Monitoring
3232

33-
As stated in our <Link to="/product/insights/overview/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
33+
As stated in our <Link to="/product/insights/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
3434

3535
## SDK Size
3636

docs/platforms/flutter/overhead/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that increasing the max number of breadcrumbs **does not** improve performa
3636

3737
## Tracing and Performance Monitoring
3838

39-
As stated in our <Link to="/product/insights/overview/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
39+
As stated in our <Link to="/product/insights/performance-overhead">product docs on the topic</Link>, Tracing adds some overhead, but should have minimal impact on the performance of your application. In typical scenarios, the expected overhead is less than 3% of the app's resource utilization.
4040

4141
## Profiling
4242

docs/product/explore/profiling/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To set up the profiling integration, use the links for supported SDKs below. Pro
1010

1111
<Alert>
1212

13-
Profiling depends on Sentry's performance monitoring product being enabled beforehand. To enable performance monitoring in the SDK, check out our [Insights guide](/product/insights/getting-started/).
13+
Profiling depends on Sentry's performance monitoring product being enabled beforehand. To enable performance monitoring in the SDK, check out our [Insights guide](/product/insights/).
1414

1515
</Alert>
1616

platform-includes/troubleshooting/dotnet.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,11 @@ using SentrySession = Sentry.Session;
5050
```
5151

5252
Then `SentrySession` can be used instead of `Sentry.Session`.
53+
54+
### Visual Studio Hot Restart Incompatibility
55+
56+
Attempting to build a .NET MAUI iOS app will result in an error if you use Visual Studio Hot Restart when developing on Windows with a remote Mac:
57+
58+
> The xcframework sentry.bindings.cocoa\5.0.1\lib\net8.0-ios17.0\Sentry.Bindings.Cocoa.resources.zip has an incorrect or unknown format and cannot be processed.
59+
60+
This happens because Hot Restart does not support static iOS libraries or frameworks containing static libraries, as detailed in the [Microsoft documentation](https://learn.microsoft.com/en-us/dotnet/maui/ios/hot-restart?view=net-maui-9.0#limitations).
Loading

src/components/communitySupportedPlatforms/index.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import kubernetes from './icons/kubernetes.png';
1313
import lua from './icons/lua.png';
1414
import nuxt from './icons/nuxt.png';
1515
import ocaml from './icons/ocaml.png';
16+
import quarkus from './icons/quarkus.png';
1617
import scrapy from './icons/scrapy.png';
1718
import serverless from './icons/serverless.png';
1819
import strapi from './icons/strapi.png';
@@ -80,6 +81,11 @@ const CommunityPlatforms = [
8081
url: 'https://github.com/brendanlong/sentry-ocaml',
8182
icon: ocaml,
8283
},
84+
{
85+
name: 'Quarkus',
86+
url: 'https://github.com/quarkiverse/quarkus-logging-sentry',
87+
icon: quarkus,
88+
},
8389
{
8490
name: 'Scrapy',
8591
url: 'https://github.com/llonchj/scrapy-sentry',

0 commit comments

Comments
 (0)