This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 9f55fd6ede Update docs errors.rst - Mention sentry "transport"
configuration option (#34912)
9f55fd6ede is described below
commit 9f55fd6eded70394cffbec3de4250142a205f317
Author: luispedroemg <[email protected]>
AuthorDate: Sun Oct 15 21:53:43 2023 +0100
Update docs errors.rst - Mention sentry "transport" configuration option
(#34912)
Added reference to sentry "transport" configuration option and how to set
it up.
---
.../administration-and-deployment/logging-monitoring/errors.rst | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git
a/docs/apache-airflow/administration-and-deployment/logging-monitoring/errors.rst
b/docs/apache-airflow/administration-and-deployment/logging-monitoring/errors.rst
index 1a114d5fb7..cb09843422 100644
---
a/docs/apache-airflow/administration-and-deployment/logging-monitoring/errors.rst
+++
b/docs/apache-airflow/administration-and-deployment/logging-monitoring/errors.rst
@@ -49,7 +49,14 @@ The ``before_send`` option can be used to modify or drop
events before they are
[sentry]
before_send = path.to.my.sentry.before_send
-You can supply `additional configuration options
<https://docs.sentry.io/platforms/python/configuration/options>`__ based on the
Python platform via ``[sentry]`` section. Unsupported options:
``integrations``, ``in_app_include``, ``in_app_exclude``, ``ignore_errors``,
``before_breadcrumb``, ``transport``.
+The ``transport`` option can be used to change the transport used to send
events to Sentry, and possibly other Systems. To set this option, provide a
dotted path to a Transport class that the sentry SDK should be configured to
use.
+
+.. code-block:: ini
+
+ [sentry]
+ transport = path.to.my.sentry.Transport
+
+You can supply `additional configuration options
<https://docs.sentry.io/platforms/python/configuration/options>`__ based on the
Python platform via ``[sentry]`` section. Unsupported options:
``integrations``, ``in_app_include``, ``in_app_exclude``, ``ignore_errors``,
``before_breadcrumb``.
Tags
-----