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.
Reviews
This plugin doesn't have any reviews.
Active Installs
820
License
MIT
Last release
June 13, 2024
Activity (30 days)
0
Closed Issues
1
Open Issues
0
Merged PRs
0
Open PRs