automattic / jetpack-stats
Collect valuable traffic stats and insights.
Installs: 11 180
Dependents: 4
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 0
Type:jetpack-library
Requires
- php: >=7.0
- automattic/jetpack-connection: ^5.1.6
- automattic/jetpack-constants: ^2.0.5
- automattic/jetpack-status: ^4.0.3
Requires (Dev)
- automattic/jetpack-changelogger: ^4.2.8
- automattic/wordbless: dev-master
- yoast/phpunit-polyfills: ^1.1.1
Suggests
- automattic/jetpack-autoloader: Allow for better interoperability with other plugins that use this package.
- dev-trunk / 0.13.x-dev
- v0.13.5
- v0.13.4
- v0.13.3
- v0.13.2
- v0.13.1
- v0.13.0
- v0.12.5
- v0.12.4
- v0.12.3
- v0.12.2
- v0.12.1
- v0.12.0
- v0.11.2
- v0.11.1
- v0.11.0
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.0
- dev-prerelease
This package is auto-updated.
Last update: 2024-11-04 16:28:39 UTC
README
Collect valuable traffic stats and insights.
How to consume Stats package
Install the right packages
First, let's make sure that the automattic/jetpack-stats
package is set up in your composer.json file:
At minimum you need three things. One is the automattic/jetpack-autoloader
package, which will ensure that you're not colliding with any other plugins on the site that may be including the same packages. Two, of course, is the automattic/jetpack-stats
package. Third is our automattic/jetpack-config
package that will be your tool for initializing the packages.
Initialize the package
Second, we must initialize ("configure") the jetpack-stats
package within your plugin, and provide the information about it.
This is where the jetpack-config
and jetpack-autoload
packages come into play. Do this, and you're ready to start consuming the Jetpack connection!
use Automattic\Jetpack\Config; require_once plugin_dir_path( __FILE__ ) . '/vendor/autoload_packages.php'; function jpcs_load_plugin() { // Here we enable the Jetpack packages. $config = new Config(); $config->ensure( 'stats' ); } add_action( 'plugins_loaded', 'jpcs_load_plugin', 1 );
Tracking Pixel
Stats Package uses a tracking pixel to send information to WordPress.com.
This is done by enqueueing a JavaScript file in the footer of the site https://stats.wp.com/e-202103.js
(the number changes every week but the file remains the same).
That JavaScript file, in turn, inserts a tracking pixel to the end of the page. For example: https://pixel.wp.com/g.gif?lots_of_parameters_here
When that tracking pixel is loaded by the browser, it effectively sends information to WordPress.com about what needs to be logged on.
Parameters tracked
Default parameters
The default parameters being tracked are built with the Automattic\Jetpack\Stats\TrackingPixel::build_view_data
function.
- v: (internal) Used to distinguish self-hosted sites from the ones hosted on WordPress.com. Enum:
ext, wpcom
- blog: The blog ID of the site
- post: The id of the post for the site. 0 if it is not a post.
- tz: The GMT offset
- srv: THe URL of the server.
How to extend default parameters
There is a filter that can be used to track more parameters. stats_array
add_filter( 'stats_array', 'filter_stats_array_add_custom_stat' ); /** * Add custom stat to the stats tracking data. * * @param param array $kvs The stats array in key values. * @return array */ function filter_stats_array_add_custom_stat( $kvs ) { $kvs['custom_stat'] = 'my_custom_stat' return $kvs;
WPCOM Stats API
The stats package provides an easy to use API that Fetches data from WPCOM.
Available Methods
Inside Automattic\Jetpack\Stats\WPCOM_Stats
class you can find the following methods. All of them internally rely on the following method Automattic\Jetpack\Connection\Client::wpcom_json_api_request_as_blog
.
get_stats
: Get site's statsget_stats_summary
: Get site's summarized views, visitors, likes and comments.get_top_posts
: Get site's top posts and pages by views.get_video_details
: Get the details of a single video.get_referrers
: Get site's referrers.get_clicks
: Get site's outbound clicks.get_tags
: Get site's views by tags and categories.get_top_authors
: Get site's top authors.get_top_comments
: Get site's top comment authors and most-commented posts.get_video_plays
: Get site's video plays.get_file_downloads
: Get site's file downloads.get_post_views
: Get a post's views.get_views_by_country
: Get site's views by country.get_followers
: Get site's followers.get_comment_followers
: Get site's comment followers.get_publicize_followers
: Get site's publicize follower counts.get_search_terms
: Get search terms used to find the site.get_total_post_views
: Get the total number of views for each post.get_visits
: Get the number of visits for the site.
Using this package in your WordPress plugin
If you plan on using this package in your WordPress plugin, we would recommend that you use Jetpack Autoloader as your autoloader. This will allow for maximum interoperability with other plugins that use this package as well.
Security
Need to report a security vulnerability? Go to https://automattic.com/security/ or directly to our security bug bounty site https://hackerone.com/automattic.
License
stats is licensed under GNU General Public License v2 (or later)