-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,34 @@ | ||
# wordpress-server-timing | ||
# Wordpress Server Timing | ||
|
||
Add Server-Timing header information from within your WordPress sites. | ||
|
||
## Requirements | ||
|
||
- PHP 7 | ||
|
||
## Installation | ||
|
||
1. Copy the `wordpress-server-timing` folder to `wp-content/plugins`. | ||
2. Activate the plugin through the WordPress admin panel. | ||
|
||
## Usage | ||
|
||
By default, the plugin measures only nine things, to keep it as light-weight as possible: | ||
|
||
- WP setup (time between request start to WP internal timer start) | ||
- Plugins loaded (time of loading all plugins including mu-plugins) | ||
- Global query setup (time between plugins loaded and theme loading) | ||
- Theme loaded (time of loading the theme and running on-the-fly functions.php logic) | ||
- Non template logic (time between theme load and wp_loaded hook) | ||
- Template processing (basically time of rendering the current template) | ||
- API request processing (if API request is sent, otherwise 0) | ||
- WPDB (time of all DB query if `SAVEQUERIES` is set to truthy) | ||
- Total application run time | ||
|
||
Once the package is successfully installed, you can see your timing information in the developer tools of your browser. Here's an example from Chrome: | ||
|
||
![image](screenshot-devtoolbar.png) | ||
|
||
## License | ||
|
||
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.