Commit Graph

52 Commits (16.0)

Author SHA1 Message Date
OCA-git-bot 2ffe4e9634 [BOT] post-merge updates 2025-01-30 05:11:22 +00:00
Eugene Molotov b0ac8ca961
[FIX] sentry: add compatibility with sentry-sdk from debian bullseye repository
Debian Bullseye is used as base docker image for odoo:16.0
2025-01-30 09:59:18 +05:00
OCA-git-bot df6471c9b1 [BOT] post-merge updates 2024-04-12 06:43:05 +00:00
Hugo Santos eccff82984 [FIX] Tests: Use logging.ERROR instead of warn
Sentry level is error by default and warnings are not captured.
2024-04-10 09:20:19 +02:00
Atte Isopuro 7bcfcd3308 [FIX] sentry: respect sentry_logging_level
Before this fix, the Sentry module sent events for WARNING-
level logs, even if sentry_logging_level was registered as
"error" or higher.

The fix itself is minor: setup of the integration mistakenly
set the hardcoded WARNING level to the event handler and the
sentry_logging_level to the breadcrumb handler, when they
should have been the other way around.

The largest part of the diff is a reworking of the tests in
order to properly replicate the issue:

* The test previously emitted a fake log event directly using
  the integration's handler's emit-method, which skipped the
  part of the logic that actually filters based on logging level.
  This has been changed to use a bespoke NoopHandler and dedicated
  Logger, so that the tests can emit "actual logs" and test Sentry
  as accurately as possible.
* The tests were not configured to use a non-default logging level,
  thus making it so that none of them caught the fact we were basically
  hard-coding the setting to WARNING-level.
  The tests now set the logging level to ERROR in order to make sure
  the configuration parameter works when it is non-default.
* Changes to configuration (especially ignored loggers) were leaking
  from one test into others. The tests were directly mutating the
  `odoo.tools.config.options` mapping, without resetting it afterward,
  leaving the changes in place for subsequent tests.
  Introduced a helper method `patch_config` that can be used to patch
  the config object so that the patch is undone at the end of the test.
2024-04-10 09:20:19 +02:00
Atte Isopuro 19643c3242 [IMP] sentry: increase test coverage 2024-04-10 09:20:19 +02:00
mymage 35245fbb2d Added translation using Weblate (Italian) 2024-01-02 12:46:34 +00:00
OCA-git-bot 6c5a361562 [UPD] README.rst 2023-09-03 16:49:46 +00:00
OCA-git-bot ab640f4c81 sentry 16.0.3.0.1 2023-07-31 14:29:29 +00:00
OCA-git-bot fd2bd4d2fd [UPD] README.rst 2023-07-31 14:29:28 +00:00
Jon f86bbf4d39 [FIX] Prevent capturing ignored exceptions 2023-07-27 15:24:23 +02:00
OCA-git-bot 42289a0bec sentry 16.0.3.0.0 2023-06-07 16:58:50 +00:00
Deivis Laya 3b1fc4fd3c [FIX] sentry: downgrade sentry-sdk to compatible version
Odoo requires urllib3 == 1.26.5
e0feda4629/requirements.txt (L56)

sentry-sdk > 1.9.0 required urllib3 >= 1.26.11
4f1f782fbe/setup.py (L43)

Currently, urllib3 >= 1.26.11 is causing the following error in
response.py:

``` Traceback (most recent call last):
"/home/odoo/.local/lib/python3.8/site-packages/urllib3/response.py",
line 705, in _error_catcher
    yield
  File
"/home/odoo/.local/lib/python3.8/site-packages/urllib3/response.py",
line 830, in _raw_read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
urllib3.exceptions.IncompleteRead: IncompleteRead(1501 bytes read, -827
more expected)
```

On the other hand, sentry 1.9.0 supports urllib3 >= 1.10.0, satisfying
odoo requirements.

This partially reverts
d7ae024951.
That was initially introduced to support newer versions of `sentry_sdk`, but won't be required anymore
due to this downgrade.
2023-06-07 16:14:03 +00:00
OCA-git-bot eb7855e44b sentry 16.0.2.0.0 2023-03-18 11:46:51 +00:00
Deivis Laya d7ae024951 [FIX] sentry: change with_locals to include_local_variables variable
Currently, version 1.17.0 of sentry_sdk is causing the following error:

SentryOption("with_locals", DEFAULT_OPTIONS["with_locals"], None),
KeyError: 'with_locals'.

Where the with_locals key is not found in the dictionary, generating an
error, stopping the installation of the sentry module.

In version 1.17.0 rename 'with_locals'  to 'include_local_variables'
79e33169aa

This commit adjust the  get_sentry_options() method in
https://github.com/Vauxoo/server-tools/blob/16.0/sentry/const.py file, set the new variable.
2023-03-18 03:20:35 +00:00
OCA-git-bot 14a56ec7a7 [UPD] README.rst 2023-01-19 08:56:43 +00:00
oca-ci 9ae69d8554 [UPD] Update sentry.pot 2023-01-19 08:54:13 +00:00
prabakaran b0503be885 [MIG] sentry: Migration to 16.0 2023-01-03 15:22:22 +05:30
Weblate f4a3b11a03 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-tools-15.0/server-tools-15.0-sentry
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-sentry/
2022-12-19 16:05:31 +05:30
OCA-git-bot c60e2afe11 [UPD] README.rst 2022-12-19 16:05:31 +05:30
oca-ci 5d787b86c7 [UPD] Update sentry.pot 2022-12-19 16:05:31 +05:30
Atte Isopuro 13868c7502 [FIX] sentry: test failure due to incomplete transport init
The test code uses a "mock" Transport object to ensure that events are
stored locally in memory, instead of triggering network requests.

The Sentry client is cleaned up once done, and this triggers a call to
capture_envelope, a different way of sending events to Sentry. Since
our mock class did not fully complete initialization, and also did
not provide an overriding method, the original was called, which
depends on proper initialization to work.

We introduce an override for capture_envelope: as it is meant to be
a "sibling" to capture_event, it makes sense for us to also make sure
events registrered in this way are intercepted, even if we don't
currently expect any of our tests to explicitly cause it to be used.
2022-12-19 16:05:31 +05:30
Atte Isopuro 1e89e34392 [MIG] sentry: Migration to 15.0 2022-12-19 16:05:31 +05:30
OCA-git-bot 45f6fe7b44 sentry 14.0.1.1.1 2022-12-19 16:05:31 +05:30
OCA-git-bot e511565d74 [UPD] README.rst 2022-12-19 16:05:31 +05:30
Florian Mounier 770cf120e0 [FIX] sentry: Fix bad ported version 2022-12-19 16:05:31 +05:30
Florian Mounier 5d3065e4af [FIX] sentry: warn about sentry_transport only if it is specified in config 2022-12-19 16:05:31 +05:30
Florian Mounier d438a30b7d [FIX] sentry: Patch odoo.service.server wsgi app
Because post_load is called after odoo.service.server start
It has already registered the unpatched   odoo.service.wsgi_server.application
So patch it here too.
This enables wsgi performance reporting with sentry_traces_sample_rate
2022-12-19 16:05:31 +05:30
Florian Mounier e546324ee2 [FIX] sentry: Coerce numerical config values 2022-12-19 16:05:31 +05:30
Fernanda Hernandez 78f7e6057f [IMP] sentry: migrate sentry-raven to new api sentry-sdk 2022-12-19 16:05:31 +05:30
Dept. Técnico 760b6a3709 Added translation using Weblate (Catalan) 2022-12-19 16:05:31 +05:30
OCA-git-bot c950f6cb6f sentry 14.0.1.0.2 2022-12-19 16:05:31 +05:30
Travis Waelbroeck 93b758bf11 [FIX] sentry: enable use of "sentry_odoo_dir" config parameter
Allow using `sentry_release` or `sentry_odoo_dir` in the Odoo
configuration file.

Previously, the `sentry_odoo_dir` was never actually respected. It would
always be overridden by `sentry_release`. Even if `sentry_release` is
not set, it will use an empty value instead of using `sentry_odoo_dir`
to find the Git commit hash.

After this commit, the `sentry_release` parameter still takes
precedence. However, if `sentry_release` is not set and
`sentry_odoo_dir` is set, then `sentry_odoo_dir` will be used to find
the appropriate Git commit hash, which will be used as the `release`
value.

Both cases are covered by the added unit tests.
2022-12-19 16:05:31 +05:30
OCA-git-bot d4cab37f13 sentry 14.0.1.0.1 2022-12-19 16:05:31 +05:30
Luis González 8e5c37b2aa [FIX] sentry: Warning when using classes from collections.abc
The following warning is fixed:

    DeprecationWarning: Using or importing the ABCs from 'collections' instead of
    from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop
    working
2022-12-19 16:05:31 +05:30
oca-travis ab25f50c7b [UPD] Update sentry.pot 2022-12-19 16:05:31 +05:30
OCA-git-bot c213184449 [UPD] README.rst 2022-12-19 16:05:31 +05:30
OCA Transbot e4640dc040 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-tools-14.0/server-tools-14.0-sentry
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-sentry/
2022-12-19 16:05:31 +05:30
Travis Waelbroeck 51ec40e854 [MIG] sentry: Migration to 14.0 2022-12-19 16:05:31 +05:30
OCA-git-bot fd159a96b7 sentry 13.0.1.1.0 2022-12-19 16:05:31 +05:30
Moisés López 7bbe60b37c [REF] sentry: Fix sentry title level
fix https://github.com/OCA/maintainer-tools/issues/459
https://github.com/OCA/server-tools/pull/1776#discussion_r436904679
Credits sbidoul

[UPD] README.rst
2022-12-19 16:05:31 +05:30
Moises Lopez - https://www.vauxoo.com/ 5dc1677f1f [REF] sentry: README.rst using gen_addon_readme.py locally
because https://github.com/OCA/maintainer-tools/issues/459

[UPD] Update sentry.pot
2022-12-19 16:05:31 +05:30
Ivan 71fccc65a0 [MIG] sentry: Migration to 13.0 2022-12-19 16:05:31 +05:30
Ivan 532bdbdbfe [IMP] sentry: black, isort 2022-12-19 16:05:31 +05:30
黎伟杰 165715b747 Added translation using Weblate (Chinese (Simplified)) 2022-12-19 16:05:31 +05:30
jeffery chen fan 6824e60500 migrate to 12.0
[UPD] Update sentry.pot
2022-12-19 16:05:31 +05:30
Simone Orsi 0a307b16bd Global pylint cleanup 2022-12-19 16:05:31 +05:30
Atte Isopuro bcdfca304b Enable setting a release option directly
sentry: It is not always possible to read commit information from
a production environment. In those cases it is useful to be able
to set a release version manually.

[UPD] Update sentry.pot
2022-12-19 16:05:31 +05:30
Nicolas JEUDY 44d39be740 [FIX] Better manage KEYS - FIELDS conversion 2022-12-19 16:05:31 +05:30
Naglis Jonaitis dc7ce73744 [MIG] sentry to V11
- [FIX] sentry: fixes missing `raven` library preventing loading of modules
- [FIX] 2to3 script on py file
- [FIX] add requirements.txt
2022-12-19 16:05:31 +05:30