Health Radar
Health Radar
Description
Health Radar is a comprehensive WordPress plugin auditing and health monitoring tool for site administrators. Get a clear, real-time picture of their site’s plugin ecosystemβconflicts, performance bottlenecks, compatibility issues, and errorsβwithout guessing or digging through logs.
Stop managing plugins blindly. Stop performance issues before they impact your users. Stop compatibility problems from becoming critical failures.
Core Features:
-
π Plugin Conflict Detector β Instantly detects duplicate script and style handles, identifies hook collisions between active plugins, and highlights which plugins are fighting for the same resources.
-
β‘ Performance Insight Panel β Measures total enqueued assets, calculates JS/CSS payload, counts database queries (when SAVEQUERIES enabled), audits wp_options autoload bloat, and generates a 0β100 health score with actionable recommendations.
-
π PHP Compatibility Checker β Validates each plugin’s Requires PHP header against your server version, scans for deprecated WordPress function usage, and flags incompatible plugins before they break your site.
-
π Debug Log Analyzer β Intelligently parses wp-content/debug.log, categorizes errors as fatal, warnings, or notices, attributes errors to specific plugins via stack trace analysis, and shows trends over time.
-
𧬠Duplicate Asset Detector β Uses file fingerprinting (MD5) to identify identical JavaScript and CSS libraries loaded by multiple plugins (detects jQuery, Lodash, Moment.js, Chart.js duplicates, and more).
-
π Health Report Generator β Compiles a full site health snapshot into a single printable page; export as JSON for automation, or generate PDF from browser print dialog.
WP-CLI Integration:
Automate plugin health audits and reporting via command line:
wp healthmonitor scanβ Trigger a full plugin health scan and display results.wp healthmonitor scoreβ Get your current health score (0β100) instantly.wp healthmonitor conflictsβ List all detected plugin conflicts and collisions.wp healthmonitor reportβ Generate a complete health report in table format.wp healthmonitor report --format=jsonβ Export full report as JSON for programmatic access and dashboards.wp healthmonitor log --last=50β Display recent debug log entries (customizable number).
Perfect for scheduled audits, CI/CD integration, and headless WordPress monitoring.
Who Should Use Health Radar?
- WordPress Site Administrators β Take control of your plugin ecosystem.
- Web Hosting Providers β Offer health audits to your clients as a value-add service.
- WordPress Developers & Agencies β Audit client sites, debug complex plugin interactions, optimize performance.
- WP-CLI Power Users β Integrate plugin audits into automation workflows and monitoring scripts.
Security & Privacy First:
This plugin operates with zero external dependencies and complete data privacy:
- β No external HTTP requests β All analysis happens locally on your server.
- β No telemetry or tracking β We don’t collect usage data.
- β No data transmission β Your plugin list, errors, and reports never leave your site.
- β WPCS & Security Compliance β Follows WordPress Coding Standards and best practices.
- β WP_Filesystem API β Uses WordPress’s secure file operations, never direct fopen/fread.
- β Nonce-protected AJAX β All admin actions verified with WordPress security tokens.
- β Capability Checks β Only administrators (manage_options) can run scans or view reports.
System Requirements
- WordPress: 6.3 or newer
- PHP: 8.1 or newer (object-oriented PHP with type hints)
- Database: MySQL 5.7+ or MariaDB 10.2+
- Recommended: WP_DEBUG enabled during audits for maximum visibility
Performance & Compatibility
Performance Impact:
* Zero performance impact on front-end
* Admin dashboard scans: 1β3 seconds (depending on plugin count)
* Results cached for 1 hour
* No background processes or cron jobs
Tested Compatibility:
* β
WordPress 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9+
* β
PHP 8.1, 8.2, 8.3, 8.4
* β
All major hosting providers (Kinsta, WP Engine, Bluehost, SiteGround, etc.)
* β
Multisite WordPress installations
* β
WP-CLI compatible
Installation
Option 1: From WordPress Dashboard (Recommended)
- Go to Plugins Add New Plugin
- Search for “Health Radar“
- Click Install Now, then Activate
- Navigate to Health Radar in the WordPress admin sidebar
- Click Run Full Scan to generate your first health report
Option 2: Manual Upload
- Download the latest version from the WordPress.org plugin directory
- Extract the
health-radarfolder - Upload to
/wp-content/plugins/via SFTP or file manager - Activate from the Plugins page in WordPress
Option 3: Via WP-CLI
`bash
wp plugin install health-radar –activate
`
After activation, navigate to Health Radar in your WordPress dashboard. All modules are ready to use immediately.
Screenshots

Dashboard β Real-time health score gauge (0β100), visual module summary cards, quick-access navigation to all audit modules, and health status indicators.

Plugin Conflicts Detector β Visual display of duplicate script/style handles, hook collision matrix, affected plugins list, and actionable recommendations for conflict resolution.

Performance Analytics Panel β Asset count breakdown, CSS and JavaScript payload estimation, database query counter, autoloaded options bloat report, and weighted health scoring metrics.

PHP Compatibility Audit β Per-plugin PHP version requirements vs. active server version, incompatibility warnings, deprecated WordPress function scanner, and migration recommendations.

Debug Log Analyzer β Real-time error parsing with fatal/warning/notice categorization, stack trace attribution to specific plugins, error frequency trending, and quick links to problematic plugins.

Health Report Generator β Comprehensive single-page audit report with all module data, Export to JSON for programmatic use, print-to-PDF via browser, and shareable HTML snapshots.
Faq
From the WordPress admin dashboard, navigate to Health Radar in the sidebar and click Run Full Scan. Alternatively, use WP-CLI: wp healthmonitor scan
No. All scans run only when you manually trigger themβnever on page load or in the background. Scan results are cached for 1 hour to minimize database queries.
Health Radar detects and reports conflicts but does not automatically fix or disable plugins. You decide which plugin to keep or remove based on the report.
Yes, three ways:
1. PDF β Use your browser’s print dialog to save as PDF directly from the report page
2. JSON β Export for programmatic access: wp healthmonitor report --format=json
3. Plain text β View raw data on the report generation page
No. Health Radar is 100% self-contained and never makes external HTTP requests. All analysis happens locally on your servers.
Health Radar scans all active plugins on your site. It reads plugin headers, analyzes enqueued scripts/styles, inspects debug.log, checks plugin files for deprecated functions, and monitors database queries.
Yes, with WP-CLI and a cron job. Example: 0 2 * * * cd /var/www/html && wp healthmonitor scan >> /tmp/health-radar.log
Yes. Health Radar reads your debug.log but never transmits it anywhere. All error analysis happens on your server. The plugin respects your file permissions and uses the secure WP_Filesystem API.
PHP 8.1 or higher. Health Radar is built for modern WordPress and PHP standards.
Absolutely. Health Radar performs read-only analysis and never modifies plugin files, settings, or database values. It’s safe for production use.
Reviews
Changelog
1.0.0 (March 19, 2026) β Review & Security Update
- WordPress.org Review Compliance:
- Removed inline JavaScript redirect; replaced with secure admin link/button
- Eliminated direct core plugin loader includes
- Refactored path/directory resolution to use WordPress helper functions
- Centralized debug log path handling via resolver methods
- Updated autoload-size SQL queries with PHPCS-compliant prepared placeholders
- Initial Feature Release:
- π Plugin Conflict Detector β dual-detection for script/style handles and hook collisions
- β‘ Performance Insight Panel β multi-dimensional health scoring (0β100 scale)
- π PHP Compatibility Checker β active plugin validation and deprecated function scanner
- π Debug Log Analyzer β intelligent error attribution and severity categorization
- 𧬠Duplicate Asset Detector β MD5-based library fingerprinting
- π Health Report Generator β multi-format export (PDF, JSON, HTML)
- π₯οΈ Full WP-CLI integration with seven commands
- π¨ Custom dashboard UI with radar-themed icon
- β WordPress Plugin Check: PASS