rafalkanski / rollbar-bundle
Symfony2 Bundle for rollbar.com
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 16
Type:symfony-bundle
Requires
- php: >=5.3
- ftrrtf/rollbar-notifier: ~1.0
- symfony/framework-bundle: >=2.3,<3.0
Requires (Dev)
- phpspec/phpspec: 2.*
- twig/extensions: ^1.3
Suggests
- twig/extensions: ~1.1 – For twig rollbarjs extension
This package is not auto-updated.
Last update: 2025-03-29 20:37:22 UTC
README
Symfony2 Bundle for rollbar.com
Installation
Install the bundle via Composer
Method 1: Auto-Update of your composer.json
php composer.phar require ftrrtf/rollbar-bundle
Method 2: Manually updating your composer.json
"require" : {
// ...
"ftrrtf/rollbar-bundle": "v0.5",
}
Register the bundle in your application
Update your AppKernel.php:
<?php public function registerBundles() { if ($this->getEnvironment() == 'prod') { $bundles[] = new \Ftrrtf\RollbarBundle\FtrrtfRollbarBundle(); } }
Configuration
# app/config/config_prod.yml ftrrtf_rollbar: notifier: server: transport: type: curl access_token: %rollbar_server_access_token% # or async # type: agent # agent_log_location: %kernel.logs_dir%/%kernel.environment%.rollbar client: access_token: %rollbar_client_access_token% # optional source_map_enabled: true code_version: "some version string, such as a version number or git sha" guess_uncaught_frames: true rollbarjs_version: "rollbar_js_version" # i.e. v1.7, if empty then the newest available version (v1.x) will be used # if you want to overwrite checkIgnore function (client js), you have to deliver # service id which implements Ftrrtf\RollbarBundle\Provider\CheckIgnoreFunctionProviderInterface # check_ignore_function_provider: my_service_name # optional - if not passed, window.location.origin will be only allowed host # allowed_js_hosts: # - http://myhost.mydomain.com # - http://myhost2.mydomain.com environment: environment: "%rollbar_environment%[%kernel.environment%]"
TODO
- More tests
- More configuration options for rollbar-notifier