From 9207781d61452cf40fa61ec592a89d0f3e0c2035 Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Fri, 27 Sep 2024 10:45:46 +0300 Subject: [PATCH 1/2] Adds breadcrumb origin field --- develop-docs/sdk/event-payloads/breadcrumbs.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/develop-docs/sdk/event-payloads/breadcrumbs.mdx b/develop-docs/sdk/event-payloads/breadcrumbs.mdx index 884fd0732a3ce3..2b817ef0f3ffe1 100644 --- a/develop-docs/sdk/event-payloads/breadcrumbs.mdx +++ b/develop-docs/sdk/event-payloads/breadcrumbs.mdx @@ -91,6 +91,10 @@ Contains a dictionary whose contents depend on the breadcrumb type. Additional p : This defines the severity level of the breadcrumb. Allowed values are, from highest to lowest: `fatal`, `error`, `warning`, `info`, and `debug`. Levels are used in the UI to emphasize and deemphasize the crumb. The default is `info`. +`origin` (optional) + +: A string representing the origin of the breadcrumb. This is typically used to identify source of the breadcrumb. For example hybrid SDKs can identify native breadcrumbs from JS or Flutter. + `timestamp` (recommended) : A timestamp representing when the breadcrumb occurred. The format is either a string as defined in [RFC 3339](https://tools.ietf.org/html/rfc3339) or a numeric (integer or float) value representing the number of seconds that have elapsed since the [Unixepoch](https://en.wikipedia.org/wiki/Unix_time). From 25014f8c02cae7e4c988f0e39cd306452912216c Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Fri, 27 Sep 2024 10:53:30 +0300 Subject: [PATCH 2/2] Syntax fix --- develop-docs/sdk/event-payloads/breadcrumbs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop-docs/sdk/event-payloads/breadcrumbs.mdx b/develop-docs/sdk/event-payloads/breadcrumbs.mdx index 2b817ef0f3ffe1..8938cabed1ce24 100644 --- a/develop-docs/sdk/event-payloads/breadcrumbs.mdx +++ b/develop-docs/sdk/event-payloads/breadcrumbs.mdx @@ -93,7 +93,7 @@ Contains a dictionary whose contents depend on the breadcrumb type. Additional p `origin` (optional) -: A string representing the origin of the breadcrumb. This is typically used to identify source of the breadcrumb. For example hybrid SDKs can identify native breadcrumbs from JS or Flutter. +: A string representing the origin of the breadcrumb. This is typically used to identify the source of the breadcrumb. For example hybrid SDKs can identify native breadcrumbs from JS or Flutter. `timestamp` (recommended)