anjalirana/newrelic-bundle
Composer 安装命令:
composer require anjalirana/newrelic-bundle
包简介
Integrate New Relic into Symfony2 with ignore transactions update
README 文档
README
This bundle integrates the NewRelic PHP API into Symfony2. For more information about NewRelic, please visit http://newrelic.com.
The bundle can use either the route name or the controller name as the transaction name. For CLI commands the transaction name is the command name.
Result
Installation
Step 0 : Install NewRelic
review http://newrelic.com ...
Step 1: Using Composer (recommended)
Use composer.phar:
$ php composer.phar require ekino/newrelic-bundle
You just have to specify the version you want : master-dev.
It will add the package in your composer.json file and install it.
Or you can do it by yourself, first, add the following to your composer.json file:
// composer.json { // ... require: { // ... "ekino/newrelic-bundle": "master-dev" } }
Then, you can install the new dependencies by running Composer's update
command from the directory where your composer.json file is located:
$ php composer.phar update ekino/newrelic-bundle
Step 1 (alternative) : Using deps file (Symfony 2.0.x)
First, checkout a copy of the code. Just add the following to the deps
file of your Symfony Standard Distribution:
[EkinoNewRelicBundle] git=http://github.com/ekino/EkinoNewRelicBundle.git target=/bundles/Ekino/Bundle/NewRelicBundle
Then, run
$ bin/vendors install
Make sure that you also register the namespace with the autoloader:
<?php // app/autoload.php $loader->registerNamespaces(array( // ... 'Ekino' => __DIR__.'/../vendor/bundles', // ... ));
Step 2 : Register the bundle
Then register the bundle with your kernel:
<?php // in AppKernel::registerBundles() $bundles = array( // ... new Ekino\Bundle\NewRelicBundle\EkinoNewRelicBundle(), // ... );
Step 3 : Configure the bundle
# app/config/config.yml ekino_new_relic: enabled: true # Defaults to true application_name: Awesome Application # default value in newrelic is "PHP Application", or whatever is set # as php ini-value api_key: # New Relic API license_key: # New Relic license key xmit: false # if you want to record the metric data up to the point newrelic_set_appname is called, set this to true logging: false # If true, logs all New Relic interactions to the Symfony log instrument: false # If true, uses enhanced New Relic RUM instrumentation (see below) log_exceptions: false # If true, sends exceptions to New Relic log_commands: true # If true, logs CLI commands to New Relic as Background jobs (>2.3 only) using_symfony_cache: false # Symfony HTTP cache (see below) transaction_naming: route # route, controller or service (see below) transaction_naming_service: ~ # Transaction naming service (see below) ignored_routes: [] # No transaction recorded for this routes ignored_paths: [] # No transaction recorded for this paths ignored_commands: [] # No transaction recorded for this commands (background tasks)
Enhanced RUM instrumentation
The bundle comes with an option for enhanced real user monitoring. Ordinarily the New Relic extension (unless disabled by configuration) automatically adds a tracking code for RUM instrumentation to all HTML responses. Using enhanced RUM instrumentation, the bundle allows you to selectively disable instrumentation on certain requests.
This can be useful if, e.g. you're returning HTML verbatim for an HTML editor.
If enhanced RUM instrumentation is enabled, you can disable instrumentation for a given request by passing along a _instrument request parameter, and setting it to false. This can be done e.g. through the routing configuration.
Transaction naming strategies
The bundle comes with two built-in transaction naming strategies. route and controller, naming the New Relic transaction after the route or controller respectively. However, the bundle supports custom transaction naming strategies through the service configuration option. If you have selected the service configuration option, you must pass the name of your own transaction naming service as the transaction_naming_service configuration option.
The transaction naming service class must implement the Ekino\Bundle\NewRelicBundle\TransactionNamingStrategy\TransactionNamingStrategyInterface interface. For more information on creating your own services, see the Symfony documentation on Creating/Configuring Services in the Container.
Symfony HTTP Cache
When you are using Symfony's HTTP cache your app/AppCache.php will build up a response with your Edge Side Includes (ESI). This will look like one transaction in New Relic. When you set using_symfony_cache: true will these ESI request be separate transaction which improves the statistics. If you are using some other reverse proxy cache or no cache at all, leave this to false.
If true is required to set the application_name.
Deployment notification
You can use the newrelic:notify-deployment command to send deployment notifications to New Relic. This requires the api_key configuration to be set.
The command has a bunch of options, as displayed in the help data.
$ app/console newrelic:notify-deployment --help
Usage:
newrelic:notify-deployment [--user[="..."]] [--revision[="..."]] [--changelog[="..."]] [--description[="..."]]
Options:
--user The name of the user/process that triggered this deployment
--revision A revision number (e.g., git commit SHA)
--changelog A list of changes for this deployment
--description Text annotation for the deployment — notes for you
The bundle provide a Capifony recipe to automate the deployment notifications (see Resources/recipes/newrelic.rb).
Integration with SonataBlockBundle
Step 0: Install SonataBlockBundle
Review SonataBlockBundle
Step 1: Enable your block:
# app/config/config.yml sonata_block: blocks: ekino.newrelic.block.simple: ekino.newrelic.block.tabs:
Integration with SonataAdminBundle
Step 0: Install SonataBlockBundle
Review preview section
Step 1: Install SonataAdminBundle
Review SonataAdminBundle installation
Step 1: Enable your block:
# app/config/config.yml sonata_block: blocks: ekino.newrelic.block: ... sonata_admin: ... dashboard: blocks: - { position: left, type: ekino.newrelic.block.simple, settings: { reference: 3Y5rCib3JmH # Url charts (https://... or 3Y5rCib3JmH) } }
More details for configuration SonataAdminBundle
Integration with Twig
{{ sonata_block_render({ 'type': 'ekino.newrelic.block.simple' }, {
'reference': '3Y5rCib3JmH'
}) }}
More details for Twig extension
anjalirana/newrelic-bundle 适用场景与选型建议
anjalirana/newrelic-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 02 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「performance」 「monitoring」 「metric」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 anjalirana/newrelic-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 anjalirana/newrelic-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 anjalirana/newrelic-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
g4 application profiler package
CSS/Javascript Minificator, Compressor and Concatenator for TYPO3 - highly configurable frontend asset optimization for CSS/JS merging, minification and compression with optional body parsing, async/defer loading, inline output, data-ignore exclusions, SRI integrity validation/calculation, external
A Symfony bundle for chameleon-system/sanitycheck
Additional Checks for Laravel Health (Spatie)
WordPress mu-plugin to remove jQuery Migrate from the list of jQuery dependencies and to allow jQuery to enqueue before </body> instead of in the <head>.
Physical quantities and formulas
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-02