From 5ee73a17499b300e7ca40fad6a291490851d93fd Mon Sep 17 00:00:00 2001 From: Viznupriyan Date: Wed, 29 Oct 2025 18:26:53 +0530 Subject: [PATCH 1/4] [IMP] sentry: max_value_length config param --- sentry/README.rst | 8 ++---- sentry/const.py | 3 +++ sentry/readme/CONFIGURE.md | 2 +- sentry/static/description/index.html | 38 ++++++++++++---------------- 4 files changed, 22 insertions(+), 29 deletions(-) diff --git a/sentry/README.rst b/sentry/README.rst index 8e3f1597bcd..75ba75692ee 100644 --- a/sentry/README.rst +++ b/sentry/README.rst @@ -1,7 +1,3 @@ -.. image:: https://odoo-community.org/readme-banner-image - :target: https://odoo-community.org/get-involved?utm_source=readme - :alt: Odoo Community Association - ====== Sentry ====== @@ -17,7 +13,7 @@ Sentry .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github @@ -70,7 +66,7 @@ arguments `__ can be configured by prepending the argument name with *sentry\_* in your Odoo config file. Currently supported additional client arguments are: -``with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations``. +``with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations, max_value_length``. Example Odoo configuration -------------------------- diff --git a/sentry/const.py b/sentry/const.py index f0205a6f0bc..a6a416d6acf 100644 --- a/sentry/const.py +++ b/sentry/const.py @@ -112,6 +112,9 @@ def get_sentry_options(): SentryOption( "max_request_body_size", DEFAULT_OPTIONS["max_request_body_size"], None ), + SentryOption( + "max_value_length", DEFAULT_OPTIONS["max_value_length"], to_int_if_defined + ), SentryOption("attach_stacktrace", DEFAULT_OPTIONS["attach_stacktrace"], None), SentryOption("ca_certs", DEFAULT_OPTIONS["ca_certs"], None), SentryOption("propagate_traces", DEFAULT_OPTIONS["propagate_traces"], None), diff --git a/sentry/readme/CONFIGURE.md b/sentry/readme/CONFIGURE.md index 92ee130add5..a0cd3f1cc38 100644 --- a/sentry/readme/CONFIGURE.md +++ b/sentry/readme/CONFIGURE.md @@ -7,7 +7,7 @@ Other [client arguments](https://docs.sentry.io/platforms/python/configuration/) can be configured by prepending the argument name with *sentry\_* in your Odoo config file. Currently supported additional client arguments are: -`with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations`. +`with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations, max_value_length`. ## Example Odoo configuration diff --git a/sentry/static/description/index.html b/sentry/static/description/index.html index 42117a52a2d..cebfa7f48e0 100644 --- a/sentry/static/description/index.html +++ b/sentry/static/description/index.html @@ -3,7 +3,7 @@ -README.rst +Sentry -
+
+

Sentry

- - -Odoo Community Association - -
-

Sentry

-

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

This module allows painless Sentry integration with Odoo.

Table of contents

@@ -398,7 +393,7 @@

Sentry

-

Installation

+

Installation

The module can be installed just like any other Odoo module, by adding the module’s directory to Odoo addons_path. In order for the module to correctly wrap the Odoo WSGI application, it also needs to be loaded as @@ -412,7 +407,7 @@

Installation

-

Configuration

+

Configuration

The following additional configuration options can be added to your Odoo configuration file:

[TABLE]

@@ -421,9 +416,9 @@

Configuration

can be configured by prepending the argument name with sentry_ in your Odoo config file. Currently supported additional client arguments are: -with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations.

+with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations, max_value_length.

-

Example Odoo configuration

+

Example Odoo configuration

Below is an example of Odoo configuration file with Odoo Sentry options:

@@ -445,14 +440,14 @@ 

Example Odoo configuration

-

Usage

+

Usage

Once configured and installed, the module will report any logging event at and above the configured Sentry logging level, no additional actions are necessary.

Try me on Runbot

-

Known issues / Roadmap

+

Known issues / Roadmap

  • No database separation – This module functions by intercepting all Odoo logging records in a running Odoo process. This means that @@ -468,7 +463,7 @@

    Known issues / Roadmap

-

Bug Tracker

+

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -476,9 +471,9 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Mohammed Barsi
  • Versada
  • @@ -487,7 +482,7 @@

    Authors

-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -521,6 +516,5 @@

Maintainers

-
From 36705a247c23be95d043dc6a655bc472b3e999df Mon Sep 17 00:00:00 2001 From: adrip-s73 Date: Wed, 10 Dec 2025 13:53:53 +0100 Subject: [PATCH 2/4] [18.0][FIX] fetchmail_attach_from_folder: add missing keyword argument --- fetchmail_attach_from_folder/README.rst | 12 +++---- .../models/fetchmail_server.py | 4 +-- .../static/description/index.html | 34 ++++++++----------- 3 files changed, 20 insertions(+), 30 deletions(-) diff --git a/fetchmail_attach_from_folder/README.rst b/fetchmail_attach_from_folder/README.rst index 2b3fd02d886..5f6aeb091b8 100644 --- a/fetchmail_attach_from_folder/README.rst +++ b/fetchmail_attach_from_folder/README.rst @@ -1,7 +1,3 @@ -.. image:: https://odoo-community.org/readme-banner-image - :target: https://odoo-community.org/get-involved?utm_source=readme - :alt: Odoo Community Association - ======================= Email gateway - folders ======================= @@ -17,7 +13,7 @@ Email gateway - folders .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github @@ -120,9 +116,9 @@ Authors Contributors ------------ -- Holger Brunn hbrunn@therp.nl -- Ronald Portier ronald@therp.nl -- Alexandre Fayolle alexandre.fayolle@camptocamp.com +- Holger Brunn hbrunn@therp.nl +- Ronald Portier ronald@therp.nl +- Alexandre Fayolle alexandre.fayolle@camptocamp.com Maintainers ----------- diff --git a/fetchmail_attach_from_folder/models/fetchmail_server.py b/fetchmail_attach_from_folder/models/fetchmail_server.py index 7df4ba7a3e3..0c1a9f741f9 100644 --- a/fetchmail_attach_from_folder/models/fetchmail_server.py +++ b/fetchmail_attach_from_folder/models/fetchmail_server.py @@ -66,10 +66,10 @@ def onchange_server_type(self): self.state = "draft" return result - def fetch_mail(self): + def fetch_mail(self, **kwargs): result = True for this in self: if not this.folders_only: - result = result and super(FetchmailServer, this).fetch_mail() + result = result and super(FetchmailServer, this).fetch_mail(**kwargs) this.folder_ids.fetch_mail() return result diff --git a/fetchmail_attach_from_folder/static/description/index.html b/fetchmail_attach_from_folder/static/description/index.html index 0c8dc0c3110..8d8d736ab74 100644 --- a/fetchmail_attach_from_folder/static/description/index.html +++ b/fetchmail_attach_from_folder/static/description/index.html @@ -3,7 +3,7 @@ -README.rst +Email gateway - folders -
+
+

Email gateway - folders

- - -Odoo Community Association - -
-

Email gateway - folders

-

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

Adds the possibility to attach emails from a certain IMAP folder to objects, ie partners. Matching is done via several algorithms, ie email address, email address’s domain or the original Odoo algorithm.

@@ -400,13 +395,13 @@

Email gateway - folders

-

Configuration

+

Configuration

In your fetchmail configuration, you’ll find a new list field Folders to  monitor. Add your folders here in IMAP notation (usually something like INBOX.your_folder_name.your_subfolder_name), choose a model to attach mails to and a matching algorithm to use.

-

Exact mailaddress

+

Exact mailaddress

Fill in a field to search for the email address in Field (model). For partners, this would be email. Also fill in the header field from the email to look at in Field (email). If you want to match @@ -415,7 +410,7 @@

Exact mailaddress

fill in to,cc,bcc.

-

Domain of email addresses

+

Domain of email addresses

Match the domain of the email address(es) found in Field (email). This would attach a mail to test1@example.com to a record with Field (model) set to test2@example.com. Given that this is a @@ -423,14 +418,14 @@

Domain of email addresses

-

Odoo standard

+

Odoo standard

This is stricly speaking no matching algorithm, but calls the model’s standard action on new incoming mail, which is usually creating a new record.

-

Usage

+

Usage

A widespread configuration is to have a shared mailbox with several folders, i.e. one where users drop mails they want to attach to partners. Let this folder be called From partners. Then create a @@ -448,7 +443,7 @@

Usage

archive folder that can be specified.

-

Bug Tracker

+

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -456,15 +451,15 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Therp BV
-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -487,6 +482,5 @@

Maintainers

-
From 1f64126722d4b8c7a61415d11d1fa9859917b026 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 9 Feb 2026 14:40:11 +0000 Subject: [PATCH 3/4] [BOT] post-merge updates --- README.md | 2 +- fetchmail_attach_from_folder/README.rst | 14 +++++--- fetchmail_attach_from_folder/__manifest__.py | 2 +- .../static/description/index.html | 36 +++++++++++-------- 4 files changed, 32 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 2547e9864a9..c34eefafb32 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ addon | version | maintainers | summary [database_size](database_size/) | 18.0.1.0.2 | | Database Size [dbfilter_from_header](dbfilter_from_header/) | 18.0.1.0.0 | | Filter databases with HTTP headers [excel_import_export](excel_import_export/) | 18.0.1.0.0 | kittiu | Base module for developing Excel import/export/report -[fetchmail_attach_from_folder](fetchmail_attach_from_folder/) | 18.0.1.1.0 | NL66278 | Attach mails in an IMAP folder to existing objects +[fetchmail_attach_from_folder](fetchmail_attach_from_folder/) | 18.0.1.2.0 | NL66278 | Attach mails in an IMAP folder to existing objects [fetchmail_notify_error_to_sender](fetchmail_notify_error_to_sender/) | 18.0.1.0.0 | | If fetching mails gives error, send an email to sender [html_text](html_text/) | 18.0.1.0.0 | | Generate excerpts from any HTML field [iap_alternative_provider](iap_alternative_provider/) | 18.0.1.0.0 | sebastienbeau | Base module for providing alternative provider for iap apps diff --git a/fetchmail_attach_from_folder/README.rst b/fetchmail_attach_from_folder/README.rst index c84f593ce84..dbf8d571a9a 100644 --- a/fetchmail_attach_from_folder/README.rst +++ b/fetchmail_attach_from_folder/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ======================= Email gateway - folders ======================= @@ -7,13 +11,13 @@ Email gateway - folders !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:ab65e43855bfb568a640043322dc68354fa2d392958a160fb7b4b14d4c5ed9c0 + !! source digest: sha256:4af6875cf9d000c6b3091a6c84d7a730fd5065af44b37fa453267dc90f08507c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github @@ -116,9 +120,9 @@ Authors Contributors ------------ -- Holger Brunn hbrunn@therp.nl -- Ronald Portier ronald@therp.nl -- Alexandre Fayolle alexandre.fayolle@camptocamp.com +- Holger Brunn hbrunn@therp.nl +- Ronald Portier ronald@therp.nl +- Alexandre Fayolle alexandre.fayolle@camptocamp.com Maintainers ----------- diff --git a/fetchmail_attach_from_folder/__manifest__.py b/fetchmail_attach_from_folder/__manifest__.py index 0a786bb1cc6..33fb4f685c9 100644 --- a/fetchmail_attach_from_folder/__manifest__.py +++ b/fetchmail_attach_from_folder/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Email gateway - folders", "summary": "Attach mails in an IMAP folder to existing objects", - "version": "18.0.1.1.0", + "version": "18.0.1.2.0", "author": "Therp BV,Odoo Community Association (OCA)", "maintainers": ["NL66278"], "website": "https://github.com/OCA/server-tools", diff --git a/fetchmail_attach_from_folder/static/description/index.html b/fetchmail_attach_from_folder/static/description/index.html index 3a77ca4ba8c..8efa87dedd2 100644 --- a/fetchmail_attach_from_folder/static/description/index.html +++ b/fetchmail_attach_from_folder/static/description/index.html @@ -3,7 +3,7 @@ -Email gateway - folders +README.rst -
-

Email gateway - folders

+
+ + +Odoo Community Association + +
+

Email gateway - folders

-

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

Adds the possibility to attach emails from a certain IMAP folder to objects, ie partners. Matching is done via several algorithms, ie email address, email address’s domain or the original Odoo algorithm.

@@ -395,13 +400,13 @@

Email gateway - folders

-

Configuration

+

Configuration

In your fetchmail configuration, you’ll find a new list field Folders to  monitor. Add your folders here in IMAP notation (usually something like INBOX.your_folder_name.your_subfolder_name), choose a model to attach mails to and a matching algorithm to use.

-

Exact mailaddress

+

Exact mailaddress

Fill in a field to search for the email address in Field (model). For partners, this would be email. Also fill in the header field from the email to look at in Field (email). If you want to match @@ -410,7 +415,7 @@

Exact mailaddress

fill in to,cc,bcc.

-

Domain of email addresses

+

Domain of email addresses

Match the domain of the email address(es) found in Field (email). This would attach a mail to test1@example.com to a record with Field (model) set to test2@example.com. Given that this is a @@ -418,14 +423,14 @@

Domain of email addresses

-

Odoo standard

+

Odoo standard

This is stricly speaking no matching algorithm, but calls the model’s standard action on new incoming mail, which is usually creating a new record.

-

Usage

+

Usage

A widespread configuration is to have a shared mailbox with several folders, i.e. one where users drop mails they want to attach to partners. Let this folder be called From partners. Then create a @@ -443,7 +448,7 @@

Usage

archive folder that can be specified.

-

Bug Tracker

+

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -451,15 +456,15 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Therp BV
-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -482,5 +487,6 @@

Maintainers

+
From e571ac1b94f7e60bfc1fdec481fc2e1ba302774f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 10 Feb 2026 21:53:04 +0000 Subject: [PATCH 4/4] [BOT] post-merge updates --- README.md | 2 +- sentry/README.rst | 8 ++++-- sentry/__manifest__.py | 2 +- sentry/static/description/index.html | 38 ++++++++++++++++------------ 4 files changed, 30 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index c34eefafb32..744c6a56d6f 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ addon | version | maintainers | summary [onchange_helper](onchange_helper/) | 18.0.1.0.1 | | Technical module that ease execution of onchange in Python code [rpc_helper](rpc_helper/) | 18.0.1.0.1 | simahawk | Helpers for disabling RPC calls [scheduler_error_mailer](scheduler_error_mailer/) | 18.0.1.0.0 | | Scheduler Error Mailer -[sentry](sentry/) | 18.0.1.0.3 | barsi naglis versada moylop260 fernandahf | Report Odoo errors to Sentry +[sentry](sentry/) | 18.0.1.0.4 | barsi naglis versada moylop260 fernandahf | Report Odoo errors to Sentry [sequence_python](sequence_python/) | 18.0.1.0.0 | | Calculate a sequence number from a Python expression [session_db](session_db/) | 18.0.1.0.1 | sbidoul | Store sessions in DB [test_auditlog](test_auditlog/) | 18.0.1.0.3 | | Additional unit tests for Audit Log based on accounting models diff --git a/sentry/README.rst b/sentry/README.rst index 75ba75692ee..70beb0a0412 100644 --- a/sentry/README.rst +++ b/sentry/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ====== Sentry ====== @@ -7,13 +11,13 @@ Sentry !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:e2f1d0bc83bf031b61df768de9c2f6d4f1feb303facf171a8d1889fc6a2635ca + !! source digest: sha256:ef40ec303dcfbdd5896a74fc2e057e8ecbf3301ecef86fbd94821b1cd2e46c8b !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github diff --git a/sentry/__manifest__.py b/sentry/__manifest__.py index 7f950bc3f0e..941bbba7ddc 100644 --- a/sentry/__manifest__.py +++ b/sentry/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Sentry", "summary": "Report Odoo errors to Sentry", - "version": "18.0.1.0.3", + "version": "18.0.1.0.4", "category": "Extra Tools", "website": "https://github.com/OCA/server-tools", "author": "Mohammed Barsi," diff --git a/sentry/static/description/index.html b/sentry/static/description/index.html index cebfa7f48e0..9cc774b37c7 100644 --- a/sentry/static/description/index.html +++ b/sentry/static/description/index.html @@ -3,7 +3,7 @@ -Sentry +README.rst -
-

Sentry

+
+ + +Odoo Community Association + +
+

Sentry

-

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

This module allows painless Sentry integration with Odoo.

Table of contents

@@ -393,7 +398,7 @@

Sentry

-

Installation

+

Installation

The module can be installed just like any other Odoo module, by adding the module’s directory to Odoo addons_path. In order for the module to correctly wrap the Odoo WSGI application, it also needs to be loaded as @@ -407,7 +412,7 @@

Installation

-

Configuration

+

Configuration

The following additional configuration options can be added to your Odoo configuration file:

[TABLE]

@@ -418,7 +423,7 @@

Configuration

are: with_locals, max_breadcrumbs, release, environment, server_name, shutdown_timeout, in_app_include, in_app_exclude, default_integrations, dist, sample_rate, send_default_pii, http_proxy, https_proxy, request_bodies, debug, attach_stacktrace, ca_certs, propagate_traces, traces_sample_rate, auto_enabling_integrations, max_value_length.

-

Example Odoo configuration

+

Example Odoo configuration

Below is an example of Odoo configuration file with Odoo Sentry options:

@@ -440,14 +445,14 @@ 

Example Odoo configuration

-

Usage

+

Usage

Once configured and installed, the module will report any logging event at and above the configured Sentry logging level, no additional actions are necessary.

Try me on Runbot

-

Known issues / Roadmap

+

Known issues / Roadmap

  • No database separation – This module functions by intercepting all Odoo logging records in a running Odoo process. This means that @@ -463,7 +468,7 @@

    Known issues / Roadmap

-

Bug Tracker

+

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -471,9 +476,9 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Mohammed Barsi
  • Versada
  • @@ -482,7 +487,7 @@

    Authors

-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -516,5 +521,6 @@

Maintainers

+