Skip to content

Commit

Permalink
Release Candidate - Sprint 63 - t-Regz and Trust (#849)
Browse files Browse the repository at this point in the history
* dependabot/pip/sprint-63-api-1 (#848)

* Bump djangorestframework from 3.14.0 to 3.15.2

Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.14.0 to 3.15.2.
- [Release notes](https://github.com/encode/django-rest-framework/releases)
- [Commits](encode/django-rest-framework@3.14.0...3.15.2)

---
updated-dependencies:
- dependency-name: djangorestframework
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Regenerating requirements.txt file

* Bump certifi from 2023.7.22 to 2024.7.4

Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.7.22 to 2024.7.4.
- [Commits](certifi/python-certifi@2023.07.22...2024.07.04)

---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Regenerating requirements.txt file

* Bump django from 4.2.11 to 4.2.14

Bumps [django](https://github.com/django/django) from 4.2.11 to 4.2.14.
- [Commits](django/django@4.2.11...4.2.14)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Regenerating requirements.txt file

* Bump sentry-sdk from 1.14.0 to 2.8.0

Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.14.0 to 2.8.0.
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@1.14.0...2.8.0)

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Regenerating requirements.txt file

* remove comments

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>

* tss-1964: Sentry traces config (#844)

Co-authored-by: abarolo <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Uka Osim <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
Co-authored-by: abarolo <[email protected]>
Co-authored-by: abarolo <[email protected]>
  • Loading branch information
6 people authored Jul 29, 2024
1 parent 2bc69eb commit 24d20cc
Show file tree
Hide file tree
Showing 4 changed files with 330 additions and 314 deletions.
3 changes: 2 additions & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,12 @@

SENTRY_DSN = env.str("SENTRY_DSN", "")
SENTRY_ENVIRONMENT = env.str("SENTRY_ENVIRONMENT", "")
SENTRY_TRACES_SAMPLE_RATE = env.float("SENTRY_TRACES_SAMPLE_RATE", 0.0)
if SENTRY_DSN:
sentry_sdk.init(
dsn=SENTRY_DSN,
environment=SENTRY_ENVIRONMENT,
traces_sample_rate=0.1,
traces_sample_rate=SENTRY_TRACES_SAMPLE_RATE,
integrations=[DjangoIntegration(), CeleryIntegration(), RedisIntegration()],
)

Expand Down
Loading

0 comments on commit 24d20cc

Please sign in to comment.