CodeTelemetryLab Admin Performance Inspector

Description

CodeTelemetryLab Admin Performance Inspector is a developer-focused performance profiling plugin built exclusively for the WordPress admin area. It instruments the WordPress request lifecycle in real time and presents all profiling data inside a clean, dedicated dashboard under Tools Admin Performance Inspector.

No configuration needed. Activate the plugin and instantly see what is slowing down your WordPress backend.

What It Profiles

Admin Page Execution Time
Measures total request time from plugins_loaded to shutdown using microtime(true). Displays the precise execution time in milliseconds on the overview panel.

Plugin Load Performance
Tracks the execution time of every active plugin using a lightweight MU-plugin drop-in. Displays a sortable table of all plugins with their individual load times and flags slow-loading plugins automatically.

Database Query Profiling
Captures every SQL query executed during the admin request using WordPress’s native SAVEQUERIES constant. Displays total query count, slow query count, cumulative query time, and a full query list with origin file and line number. Slow queries (default threshold: 100ms) are visually flagged.

Hook Execution Profiling
Times key WordPress hooks including init, admin_init, admin_menu, current_screen, and wp_loaded. Shows execution time and registered callback count for each hook.

Memory Usage Monitoring
Displays current memory usage, peak memory usage, and percentage of PHP memory limit consumed — with a visual progress bar.

Who Is This For?

  • WordPress developers diagnosing slow admin dashboards
  • Site administrators troubleshooting plugin conflicts
  • DevOps engineers benchmarking admin performance
  • Agencies auditing client site backends

Key Features

  • Zero configuration — activate and start profiling immediately
  • Single unified dashboard under Tools menu
  • Per-plugin load time table with slow plugin detection
  • Full SQL query list with execution time and origin
  • Configurable slow query threshold (default 100ms)
  • Hook timing table for monitored WordPress core hooks
  • Memory usage progress bar showing usage vs PHP limit
  • All output sanitized and escaped — security-first design
  • Access restricted to manage_options capability only
  • Fully translatable with .pot file included
  • Follows WordPress Coding Standards throughout
  • GPLv2 licensed — fully open source

Privacy

CodeTelemetryLab Admin Performance Inspector does not collect, transmit, or store any data outside your WordPress installation. All profiling data is captured in memory during the current request only and displayed solely within your admin dashboard. No external API calls are made.

Support

For support, please use the WordPress.org support
forum for this plugin.
For enquiries, visit https://codetelemetrylab.vercel.app

Credits

Developed and maintained by CodeTelemetryLab.
Plugin architecture based on the WordPress Plugin Boilerplate.

Installation

Automatic Installation

  1. Log in to your WordPress admin dashboard.
  2. Navigate to Plugins Add New.
  3. Search for CodeTelemetryLab Admin Performance Inspector.
  4. Click Install Now, then Activate.
  5. Navigate to Tools Admin Performance Inspector.

Manual Installation

  1. Download the plugin zip file from the WordPress Plugin Directory.
  2. Navigate to Plugins Add New Upload Plugin.
  3. Upload the zip file and click Install Now.
  4. Click Activate Plugin.
  5. Navigate to Tools Admin Performance Inspector.

FTP Installation

  1. Download and unzip the plugin archive.
  2. Upload the codetelemetrylab-admin-performance-inspector folder to /wp-content/plugins/.
  3. Activate the plugin from the Plugins screen.

FAQ

Will this plugin slow down my site?

No. The plugin is designed to add less than 5% overhead to the admin page baseline execution time. All profiling is lazy-loaded and only active on admin requests. It has zero impact on your public-facing frontend.

How does plugin load time tracking work?

On activation, the plugin drops a tiny Must-Use (MU) plugin into wp-content/mu-plugins/. This MU plugin times each active plugin as it loads. When you deactivate the plugin, the MU drop-in is automatically removed.

Why do I see a query logging notice?

Database query profiling requires WordPress’s SAVEQUERIES constant to be enabled. The plugin dashboard provides a one-click button to enable it automatically in your wp-config.php. You can also disable it from the same panel when not needed.

Can I change the slow query threshold?

Yes. The default threshold is 100ms. You can adjust it from the plugin settings panel under Tools Admin Performance Inspector.

Is profiling data stored in the database?

No. Version 1.0.0 captures profiling data in memory for the current page request only. Nothing is written to the database. Historical tracking is planned for a future version.

Who can see the profiling dashboard?

Only WordPress administrators with the manage_options capability can access the dashboard. This is enforced on every request.

Does this affect my frontend or public site?

No. The plugin is scoped exclusively to wp-admin requests. No profiling code runs on public-facing pages.

How do I uninstall cleanly?

Deactivate the plugin then click Delete. The uninstall routine automatically removes all plugin options from wp_options and removes the MU drop-in file, leaving your database and filesystem clean.

Is it compatible with WooCommerce and Elementor?

Yes. The plugin has been tested with WooCommerce, Elementor, Yoast SEO, and Contact Form 7. If you encounter any compatibility issue, please open a support thread.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“CodeTelemetryLab Admin Performance Inspector” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

1.0.0

  • Initial release of CodeTelemetryLab Admin Performance Inspector.
  • Admin page execution time measurement from plugins_loaded to shutdown.
  • Per-plugin load time profiling via lightweight MU-plugin drop-in.
  • Database query profiling with configurable slow query threshold (default 100ms).
  • Hook execution timing for init, admin_init, admin_menu, current_screen, wp_loaded.
  • Memory usage monitoring with progress indicator.
  • One-click SAVEQUERIES enable/disable from the dashboard.
  • Unified admin dashboard under Tools Admin Performance Inspector.
  • Full i18n support with .pot translation template.
  • All output sanitized and escaped. Access restricted to administrators.