chrismou / craft-rollbar
Rollbar integration for CraftCMS
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- php: >=8.2 <9.0
- craftcms/cms: ^5.0.0-alpha.1
- rollbar/rollbar: ^4.0
README
Rollbar plugin for Craft CMS
This plugin provides Rollbar support for Craft CMS.
Features
- PHP Exception reporting to Rollbar
- JS Exception reporting to Rollbar (optional)
Requirements
This plugin requires Craft CMS 5 or later. For Craft 3 or 4 support, please use the 3.x or 4.x branches.
Installation
Plugin Store
To install Rollbar, navigate to the Plugin Store section of your Craft control panel, search for Rollbar
, and click the Install button.
Composer
You can also add the package to your project using Composer.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require chrismou/craft-rollbar
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Rollbar.
Configuration
First you'll need to setup a Rollbar account.
Once you have an account and created your project, you'll be provided with an access Key. Navigate to Settings > Plugins > Rollbar
and start typing the name of your environment variable in the Access Token
field, until you see your variable name in the autocomplete box.
In order to log JS exceptions, you'll also need to enable the option and add your postClientItemAccessToken
using the
same method as above.
In order to exclude certain exceptions from being logged, create a comma separated list of fully qualified exception classes and add it to the relevant setting using the same method as above.
For example, if you're looking to exclude 404 exceptions, you could add the following to your .env:
ROLLBAR_IGNORED_EXCEPTIONS=yii\web\NotFoundHttpException
Then simply add the ROLLBAR_IGNORED_EXCEPTIONS
value to your settings.
Licensing
Released under the MIT License. See LICENSE.
This plugin is maintained by Chris Chrisostomou. With thanks to the original developer, Newism.