shiroi/xhprof-webman
Composer 安装命令:
composer require shiroi/xhprof-webman
包简介
适用于webman的xhprof扩展
README 文档
README
shiroi/xhprof-webman是一款适配webman的代码性能分析插件。 主要对旧版且无法使用的xhprof做优化调整,用于适配webman,安装简单快捷。 开发者可以通过浏览器快速访问性能分析报告,排查代码性能问题。
作者博客
原作者:艾瑞可erik
安装
php要安装xhprof扩展 在php.ini中增加配置
[xhprof]
extension=xhprof.so;
xhprof.output_dir=/tmp/xhprof;
Use Composer:
composer require shiroi/xhprof-webman
配置
- config增加全局中间件
'' => [
Shiroi\Xhprof\Webman\XhprofMiddleware::class,
]
- 创建控制器,复制下面代码
<?php
namespace app\controller;
use support\Request;
use Shiroi\Xhprof\Webman\Xhprof;
class TestController
{
public function index(Request $request)
{
return Xhprof::index();
}
}
- 路由增加以下代码
Route::get('/test', ['app\controller\TestController','index']);
- 基础配置在config/plugin/shiroi/xhprof/xhprof.php中
'enable' => true,
'time_limit' => 0, //仅记录响应超过多少秒的请求 默认0记录所有
'log_num' => 1000, //仅记录最近的多少次请求(最大值有待观察,看日志、查看响应时间) 默认1000
'view_wtred' => 3, //列表耗时超过多少秒标红 默认3s
'ignore_url_arr' => ["/test"], //忽略URL配置
shiroi/xhprof-webman 适用场景与选型建议
shiroi/xhprof-webman 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 71 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 03 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「xhprof」 「webman」 「erik」 「shiroi」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shiroi/xhprof-webman 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shiroi/xhprof-webman 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shiroi/xhprof-webman 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Quick profiling of your code for Laravel
base64 image verification captcha library for webman plugin
Xhprof buggregator integration for Symfony Framework
GUI to analyze the profiling data collected using XHProf - A Hierarchical Profiler for PHP.
Webman Hashids Used to generate a youtube-like ID from a digital ID
This bundle add additional XHProf menu item in symfony debug toolbar
统计信息
- 总下载量: 71
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-25

