Skip to content

Commit

Permalink
Enable error monitoring by default. (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling authored Sep 6, 2021
1 parent 554eda1 commit 518b0df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added
- Convert objtrace to use PEP 489 multi-phase initialization.
([Issue #661](https://github.com/scoutapp/scout_apm_python/issues/661))
- Enable error monitoring by default.

### Fixed
- Disconnect receiver from celery task_failure signal.
Expand Down
2 changes: 1 addition & 1 deletion src/scout_apm/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __init__(self):
"disabled_instruments": [],
"download_url": "https://s3-us-west-1.amazonaws.com/scout-public-downloads/apm_core_agent/release", # noqa: B950
"errors_batch_size": 5,
"errors_enabled": False,
"errors_enabled": True,
"errors_ignored_exceptions": (),
"errors_host": "https://errors.scoutapm.com",
"framework": "",
Expand Down

0 comments on commit 518b0df

Please sign in to comment.