Skip to content

Commit 31703a1

Browse files
authored
Adding logs callout in relevant breadcrumbs docs. (#15432)
This change is not typically how we would want to move forward with changes - being that we would normallly focus on making these changes on each SDK. Breadcrumbs are relatively low impact changes - and the content being added is informational only. Making this change wider as an exception with the understanding we can revert specific areas if needed.
1 parent c1a2f0c commit 31703a1

File tree

29 files changed

+153
-1
lines changed

29 files changed

+153
-1
lines changed

docs/platforms/android/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/android/integrations/logcat/index.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ categories:
88
og_image: /og-images/platforms-android-integrations-logcat.png
99
---
1010

11+
<Alert level="warning" title="Did you mean logs instead?">
12+
13+
This integration captures Logcat logs as breadcrumbs (great for error context!). But if you need to search and query your logs across your entire application, use <PlatformLink to="/logs/">Sentry Logs</PlatformLink> instead. Logcat logs at or above the `minLevel` are automatically sent as Sentry Logs when enabled. See the <PlatformLink to="/integrations/logcat/#support-with-sentry-logs">Support With Sentry Logs</PlatformLink> section below.
14+
15+
</Alert>
16+
1117
<Alert>
1218

1319
Supported in Sentry's Android SDK version `6.17.0` and above.

docs/platforms/android/integrations/timber/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ sdk: sentry.java.android.timber
66
description: "Learn more about the Sentry Timber integration for the Android SDK."
77
---
88

9-
The `sentry-android-timber` library provides [Timber](https://github.com/JakeWharton/timber) support for Sentry via [Timber Tree](https://github.com/JakeWharton/timber/blob/10f0adce3921ad2929ddf2f3b7fecda2cf3148a5/timber/src/main/java/timber/log/Timber.kt#L20) that sends events and breadcrumbs to Sentry. Once this integration is configured you can use Timber’s static API.
9+
<Alert level="warning" title="Did you mean logs instead?">
10+
11+
This integration captures Timber logs as breadcrumbs and error events (great for error context!). But if you need to search and query your logs across your entire application, use <PlatformLink to="/logs/">Sentry Logs</PlatformLink> instead. Timber logs at or above the `minLogsLevel` are automatically sent as Sentry Logs when enabled. See the <PlatformLink to="/integrations/timber/#support-with-sentry-logs">Support With Sentry Logs</PlatformLink> section below.
12+
13+
</Alert>
14+
15+
The `sentry-android-timber` library provides [Timber](https://github.com/JakeWharton/timber) support for Sentry via [Timber Tree](https://github.com/JakeWharton/timber/blob/10f0adce3921ad2929ddf2f3b7fecda2cf3148a5/timber/src/main/java/timber/log/Timber.kt#L20) that sends events and breadcrumbs to Sentry. Once this integration is configured you can use Timber's static API.
1016

1117
The source can be found [on GitHub](https://github.com/getsentry/sentry-java/tree/master/sentry-android-timber/src/main/java/io/sentry/android/timber).
1218

docs/platforms/apple/common/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/dart/common/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/dart/guides/flutter/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/dotnet/common/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/go/common/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/godot/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

docs/platforms/java/common/enriching-events/breadcrumbs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Breadcrumbs
33
description: "Learn more about what Sentry uses to create a trail of events (breadcrumbs) that happened prior to an issue."
44
---
55

6+
<PlatformContent includePath="enriching-events/breadcrumbs-banner" />
7+
68
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.
79

810
This page provides an overview of manual breadcrumb recording and customization. Learn more about the information that displays on the **Issue Details** page and how you can filter breadcrumbs to quickly resolve issues in [Using Breadcrumbs](/product/error-monitoring/breadcrumbs).

0 commit comments

Comments
 (0)