From 5202b09300a334f0ccb7e5676b1742f99aa4e727 Mon Sep 17 00:00:00 2001 From: mr1716 Date: Tue, 22 Apr 2025 09:40:25 -0400 Subject: [PATCH] Update error-reporting.md To Highlight Default Value --- docs/configuration/error-reporting.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuration/error-reporting.md b/docs/configuration/error-reporting.md index 56f187845..3b86a78d2 100644 --- a/docs/configuration/error-reporting.md +++ b/docs/configuration/error-reporting.md @@ -2,7 +2,7 @@ ## SENTRY_DSN -Default: None +Default: `None` Defines a Sentry data source name (DSN) for automated error reporting. `SENTRY_ENABLED` must be True for this parameter to take effect. For example: @@ -14,7 +14,7 @@ SENTRY_DSN = "https://examplePublicKey@o0.ingest.sentry.io/0" ## SENTRY_ENABLED -Default: False +Default: `False` Set to True to enable automatic error reporting via [Sentry](https://sentry.io/). @@ -25,7 +25,7 @@ Set to True to enable automatic error reporting via [Sentry](https://sentry.io/) ## SENTRY_SAMPLE_RATE -Default: 1.0 (all) +Default: `1.0` (all) The sampling rate for errors. Must be a value between 0 (disabled) and 1.0 (report on all errors). @@ -33,7 +33,7 @@ The sampling rate for errors. Must be a value between 0 (disabled) and 1.0 (repo ## SENTRY_SEND_DEFAULT_PII -Default: False +Default: `False` Maps to the Sentry SDK's [`send_default_pii`](https://docs.sentry.io/platforms/python/configuration/options/#send-default-pii) parameter. If enabled, certain personally identifiable information (PII) is added. @@ -60,7 +60,7 @@ SENTRY_TAGS = { ## SENTRY_TRACES_SAMPLE_RATE -Default: 0 (disabled) +Default: `0` (disabled) The sampling rate for transactions. Must be a value between 0 (disabled) and 1.0 (report on all transactions).