mplachta / FtrrtfRollbarBundle

Symfony2 Bundle for rollbar.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FtrrtfRollbarBundle

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
    environment:
        environment: "%rollbar_environment%[%kernel.environment%]"

TODO

  • More tests
  • More configuration options for rollbar-notifier

About

Symfony2 Bundle for rollbar.com

License:MIT License


Languages

Language:PHP 100.0%