xwp/site-performance-tracker
Composer 安装命令:
composer require xwp/site-performance-tracker
包简介
Detect and track site performance metrics
关键字:
README 文档
README
This WordPress plugin sends Core Web Vitals data to Google Analytics. It is compatible with Web Vitals Report
Installation
This plugin can be installed as a Composer dependency:
composer require xwp/site-performance-tracker
or by downloading a plugin ZIP file from the releases page.
Usage
The plugin must be configured by setting the site_performance_tracker_vitals theme feature with your Analytics IDs. Collected data will be available in Web Vitals Report in a few days.
To send Web Vitals metrics to Google Analytics in a format compatible with the Web Vitals Report, enable the following theme support and passing in the ID:
GA4 Analytics is supported, requires passing the ID using ga4_id:
add_theme_support( 'site_performance_tracker_vitals', array( 'ga4_id' => 'G-XXXXXXXXXX', ) );
The following hooks can be added to a theme or a custom plugin to configure the plugin, alternatively you can configure the plugin through the settings screen, in case of duplication, plugin will take programmatically set settings. To confirm they were applied look for the webVitalsAnalyticsData global variable in the page source.
Limit the number of events sent
The following filter can be used to limit the number of tracking events to a percentage of your traffic. For example, to limit the tracking events to 5% of requests, use the following logic:
add_filter( 'site_performance_tracker_chance', function() { return 0.05; } );
Disable the tracking
Programmatically disable the plugin.
add_filter( 'site_performance_tracker_disabled', '__return_true' );
Delay script loading
Programmatically delay web vitals tracking to minimise impact on interactivity. By default, an idle callback request is postponed by 5000ms, a value which can be adjusted via a filter:
add_filter( 'site_performance_tracker_web_vitals_delay', function() { return 1000; } );
Contribute
All contributions are welcome! Please create an issue for bugs and feature requests, and use pull requests for code contributions.
Project Setup
-
We use
wp-envfor local development environment. See all theenv:*scripts inpackage.jsonfor supported commands and helpers. -
webpack.config.jsconfigures how@wordpress/scriptstransforms JS and CSS assets during packaging. -
We use the
@wordpress/eslint-plugin/recommended-with-formattingruleset for JS linting since the Prettier integration is currently unreliable in@wordpress/scripts.
Changelog
1.3.6 - Jan 14th, 2025
- Made events non_interaction, such that they don't interfere with user events.
1.3.5 - Jul 28th, 2023
- Add tracking support for Google Tag Manager setup GA4 with window.dataLayer.
1.3.4 - Jul 15th, 2023
- Fix bug in INP reporting when some attributions were empty.
1.3.3 - Jun 26th, 2023
- Deprecated GA3 support.
- Used attribution build of web vitals.
1.3.2 - October 30th, 2023
- Improved admin interface for GA4.
- Bumped up build process to use Node 16.
1.3.1 - July 18th, 2023
- Updated GA4 Settings.
- Added WP-Rocket exclusion to web-vitals-analytics.
- Cleaned up/refactored settings code.
1.3 - February 24th, 2023
- Added INP metric.
- Support for smaller web vitals ratio.
1.2 - December 5, 2022
- Clean up settings code.
1.1.7 - July 5, 2022
- Fix GA delivery bug.
1.1.6 - May 18, 2022
- Fix GA not tracking bug when using the UI.
1.1.5 - March 17, 2022
- Adding TTFB.
1.1.4 - March 10, 2022
- Improve performance by loading and executing the script in quiter periods.
- Make chunk hash a part of the output filename.
1.1.3 - March 9, 2022
- Fix UI to prefill configured data.
1.1.2 - March 4, 2022
- Fix duplicated page view when using gtag.
1.1.1 - March 3, 2022
- Fix duplicitous page views when using gtag.
- Fix PHP notices.
1.1.0 - January 6, 2022
- Introduces an UI in WordPress Admin for easier configuration. If any config parameters are set in the theme files, the UI will not allow changing those parameters.
1.0.0 - October 4, 2021
- Update docs to start the "Usage" section with the required configuration for the plugin to do anything.
- Switch to basic PHP includes for loading the PHP files instead of Composer autoload.
- Introduce helper methods for working with asset paths and URLs.
- Introduce VIP Go coding standards.
- Introduce PHP unit testing.
0.9.1 - July 9, 2021
- Fix
configureGtagcall
0.9 - June 16, 2021
- Update web vitals JS library to 2.0.1
0.8 - May 28, 2021
- Remove Performance Observer functionality
- Code cleanup
0.7 - May 26, 2021
- Add support for Google Analytics 4.
0.6 - May 25, 2021
- Fix Google Analytics support.
- Code cleanup - remove unused metric and dimension.
0.5 - April 13, 2021
- Feature: Add support for sending data in the web vitals report format.
0.3.1 - March 11, 2020
- Feature: Add support to Analytics added through Google Tag Managere.
0.3.0 - March 11, 2020
- Feature: Track 'first-delay' of over 100ms.
0.2.0 - February 22, 2019
- Make autoload.php optional to support project-wide autoload.
- Add an action
xwp/performance_tracker/render_markas an alternative way for adding performance marks in the front-end. - Bugfix: Use proper JS escaping (as per WordPress VIP review).
0.1.1 - February 18, 2019
- The plugin is no longer using a singleton pattern. Instead it is just a regular class that is being instantiated in the main plugin file.
- Namespace has been added.
- The PHP version check has been added (>= 5.3).
- The helper functions are extracted to a separate file and they are now using static functions inside the class.
- The
$default_entry_typesarray is no longer defined as static.
0.1.0 - February 15, 2019
- Initial release.
Contribute
Please follow the contribution guide.
Credits
Created by XWP and contributors. Licensed under GNU General Public License v2.0 or later.
xwp/site-performance-tracker 适用场景与选型建议
xwp/site-performance-tracker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 130.17k 次下载、GitHub Stars 达 98, 最近一次更新时间为 2019 年 02 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「wordpress」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 xwp/site-performance-tracker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 xwp/site-performance-tracker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 xwp/site-performance-tracker 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Must-use plugin integrating WordPress with the Upsun platform: environment awareness, router-cache friendliness, safe preview clones, deploy migrations, Site Health checks, and a wp upsun CLI command.
Inertia.js server-side adapter for PHP. Handles full visits, Inertia XHR visits, asset-version 409 handshakes and partial reloads. Framework-agnostic, with transparent WordPress integration.
Adds Cache-Tag HTTP response headers for singular WordPress content and purges Cloudflare by tag when content changes.
AI Chatbot & Helpdesk Agent for WooCommerce. Connects your store to Egentify for AI-powered chat, order tracking, email, and ticketing.
MIDDAG's reference architecture for a WordPress plugin — composes the OSS framework/wordpress/ui libraries end to end.
Assets helper package for the Hybrid Core framework.
统计信息
- 总下载量: 130.17k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 99
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2019-02-22