Pushes Craft CMS errors to Sentry using the up-to-date SDK.
Configuring Sentry
Create a config/sentry-sdk.php
config file with the following contents:
<?php
return [
'enabled' => true,
'anonymous' => false, // Determines to log user info or not
'clientDsn' => getenv('SENTRY_DSN') ?: 'https://example@sentry.io/123456789', // Set as string or use environment variable.
'excludedCodes' => ['400', '404', '429'],
'release' => getenv('SENTRY_RELEASE') ?: null, // Release number/name used by sentry.
];
Credits
Based upon the sentry plugin by Luke Youell.
- Installation Instructions
To install this plugin, copy the command above to your terminal.
- Active Installs
- 774
- License
- MIT
- Last release
- September 16, 2022
- Activity (30 days)
- 0Closed Issues0Open Issues0Merged PRs0Open PRs