0

サーバーに New Relic をインストールして、ウェブサイトのパフォーマンスを監視しています。しかし最近、New Relic の監視から wp-cron.php を削除したいと考えています。

wp-cron.php に次のコードを追加します。

[...]

if ( !defined('ABSPATH') ) {
/** Set up WordPress environment */
require_once('./wp-load.php');
}

if (extension_loaded('newrelic')) {
    newrelic_ignore_transaction();
    newrelic_ignore_apdex();
}

[...]

残念なことに、このコードは機能せず、New Relic はレポートにワードプレスの cronjobs に時間がかかりすぎていることを示しています。wordpress アプリケーションで cron ジョブが何回消費されたかを知る必要はありません。

New Relicから削除する方法を知っている人はいますか?

4

2 に答える 2

3

個々のPHPアプリケーションまたはアプリケーション内のスクリプトごとに変数を設定するための最良の方法は、PHP.iniでauto_prepend_fileを設定して、上記の変数を設定するPHPファイルを指すようにすることです。

私が使用しているコードはgitで公開されていますので、お気軽に借りたり、改善したり、提案したりしてください。簡単にするために、ここにもリストします。

###
# NewRelic PHP API central file
# Description: Allows PHP installs using mod-fgcid to set newrelic_set_appname
# Usage: Inside PHP.ini for each vhost in your server,
# point to this script using: auto_prepend_file = "newrelic.php"
# Where you place the script depends on your include_path setting.
# See http://www.php.net/manual/en/ini.core.php#ini.auto-prepend-file
# Version: 0.2
# Author http://MATTERmedia.com/
#
# This script is released under the GNU General Public License, version 2 (GPL).
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
###

if (extension_loaded('newrelic')) {
    if (!isset($_SERVER['HTTP_HOST'])) {
        newrelic_set_appname ("Unknown");
        } else {
            # If UseCanonicalName is set to Off, Apache will use (user inputted) HTTP_HOST for SERVER_NAME
            # Best is to rely on HTTP_HOST and validate it against a list of allowed hosts.
            # See http://shiflett.org/blog/2006/mar/server-name-versus-http-host
            $host = strtolower($_SERVER['HTTP_HOST']);
            # Easily disable any vhost from sending data to newrelic.
            $disabled_hosts = array('foo.example.com');
            $valid_hosts = array('bar.example.com');
            # Add a secondary AppName
            $secondary_appname = ';All Virtual Hosts';          
            if ((!in_array($host, $disabled_hosts)) && (in_array($host, $valid_hosts))) {
                    newrelic_set_appname($host.$secondary_appname);
                } else {                    
                    newrelic_ignore_transaction();
                    # technically you wouldn't need to disable_autorum when you ignore_transaction, but it's good practice.
                    newrelic_disable_autorum();
            }           
        }
}

サーバー構成でディレクトリごとにphp.iniが許可されている場合は、新しいphp.iniを削除し、auto_prepend_fileがnewrelic_ignore_transaction()を呼び出すphpファイルを指すようにします。

サーバー構成でディレクトリごとのphp.ini(mod_fcgidなど)が許可されていない場合は、実行中のスクリプトを検出するように提案されたコードを変更し、その条件が満たされたときにnewrelic_ignore_transaction()を発行します。

于 2013-02-28T12:06:51.703 に答える
0

あなたの質問のおかげで、私New Relicはそれが非常に便利なツールであることを発見しました。

Drupal調べてみると、cron ジョブに関連するこのスニペットが見つかりました。68行目の引数を参照してくださいTRUE。おそらくそれが必要です...

New Relic を実装する Drupal モジュール

57 /**
58 * Implementation of hook_cron().
59 *
60 * This is used to set cron tasks to be not tracked by RPM if so desired.
61 */
62 function new_relic_rpm_cron() {
63     $cron_tracking = variable_get('new_relic_rpm_track_cron', 'norm');
64     if ($cron_tracking == 'bg') {
65         newrelic_background_job(TRUE);
66     }
67     elseif ($cron_tracking == 'ignore') {
68         newrelic_ignore_transaction(TRUE); // pass TRUE to ignore
69     }
70 }
于 2013-01-01T20:14:59.577 に答える