Craft integration with error monitoring service Sentry.
To install Sentry, follow these steps:
- Download & unzip the file and place the
sentrydirectory into yourcraft/pluginsdirectory - Install plugin in the Craft Control Panel under Settings > Plugins
Sentry works on Craft 2.4.x and Craft 2.5.x.
You’ll need to create a sentry.php file in your craft/config directory and set your server access token via the accessToken configuration item.
// craft/config/sentry.php
return [
'dsn' => 'https://<key>:<secret>@sentry.io/<project>',
'publicDsn' => 'https://<key>@sentry.io/<project>',
];