gpt4 book ai didi

php - 仅在慢速页面中激活 Xhprof

转载 作者:行者123 更新时间:2023-12-04 23:25:21 27 4
gpt4 key购买 nike

是否可以在调用页面/url 一段时间后才激活 xhprof?

通常我的页面响应时间不到 1 秒。有时他们会在 10 秒内回复(不,这不是存档的 session )。我想在请求开始后 1 秒后激活 xhprof。 (现在可以失去分析的第一秒)

如果是 javascript,我们有 setTimeout,但 PHP 不是线程化的。

有什么想法吗?

最佳答案

你可以使用这样的东西。 xhprofon.php:

function my_xhprof_disable()
{
$xhprof_data = xhprof_disable();

if(defined('MY_DEBUG_START') && (microtime(true) - MY_DEBUG_START) > 1)
{
$XHPROF_ROOT = "/src/to/xprof/";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";
$xhprof_runs = new XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, "mysitename");
}
}

define('MY_DEBUG_START', microtime(true));
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);

register_shutdown_function('my_xhprof_disable');

然后使用 auto_prepend_file 将此文件包含在所有页面上。

关于php - 仅在慢速页面中激活 Xhprof,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27295591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com