rafalkanski/rollbar-bundle

rollbar.com 的 Symfony2 Bundle

安装: 15

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 16

类型:symfony-bundle

v0.14 2015-10-29 21:03 UTC

README

rollbar.com 的 Symfony2 Bundle

安装

使用 Composer 安装包

方法 1: 自动更新 composer.json

php composer.phar require ftrrtf/rollbar-bundle

方法 2: 手动更新 composer.json

"require" :  {
    // ...
    "ftrrtf/rollbar-bundle": "v0.5",
}

在应用中注册包

更新 AppKernel.php

<?php
public function registerBundles()
{
    if ($this->getEnvironment() == 'prod') {
        $bundles[] = new \Ftrrtf\RollbarBundle\FtrrtfRollbarBundle();
    }
}

配置

# 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%]"

待办事项

  • 更多测试
  • 为 rollbar-notifier 添加更多配置选项