System Status

Monitor system health and component status

Debug Monitoring

Real-time debug monitoring controls and status

Enable or disable submodule debug monitoring for Planner, Writer, Linker, Optimizer and Personalize

Real-time Monitoring
>
>
Debug Monitoring:
Real-time debug monitoring is active for all submodules. Debug cards and status indicators are visible on submodule pages. Debug monitoring is disabled. Debug cards and status indicators are hidden on submodule pages.

System Layers

System layer health and operational metrics

100%
Layer Health
6
Operational
0
Failed
6
Total Layers
'DB', 'configuration_system' => 'CFG', 'rendering_system' => 'RND', 'javascript_ajax' => 'JS', 'component_functionality' => 'CMP', 'data_flow' => 'FLW' ]; foreach ($layer_labels as $layer_key => $label): $layer_status = true; // Simplified - always true for basic layer summary $status_class = $layer_status ? 'bg-success' : 'bg-error'; ?>
All Layers Operational
All 6 layers are functioning correctly. The Igny8 plugin is operating at full capacity.

System Information & Database Status

System details, database tables, and module status

System & API Info

System information and API configuration status

System Information
Plugin:
WordPress:
PHP:
MySQL: db_version(); ?>
API Status
OpenAI API:
Model:

Database Tables 1

Core database tables status and health

'Keywords', 'igny8_tasks' => 'Tasks', 'igny8_data' => 'Data', 'igny8_variations' => 'Variations', 'igny8_rankings' => 'Rankings', 'igny8_suggestions' => 'Suggestions', 'igny8_campaigns' => 'Campaigns' ]; foreach ($tables_part1 as $table => $name) { $table_name = $wpdb->prefix . $table; $exists = $wpdb->get_var("SHOW TABLES LIKE '$table_name'") == $table_name; $status_color = $exists ? 'green' : 'red'; $status_icon = $exists ? '✓' : '✗'; echo "
$status_icon $name
"; } ?>

Database Tables 2

Extended database tables status and health

'Content Ideas', 'igny8_clusters' => 'Clusters', 'igny8_sites' => 'Sites', 'igny8_backlinks' => 'Backlinks', 'igny8_mapping' => 'Mapping', 'igny8_prompts' => 'Prompts', 'igny8_logs' => 'Logs' ]; foreach ($tables_part2 as $table => $name) { $table_name = $wpdb->prefix . $table; $exists = $wpdb->get_var("SHOW TABLES LIKE '$table_name'") == $table_name; $status_color = $exists ? 'green' : 'red'; $status_icon = $exists ? '✓' : '✗'; echo "
$status_icon $name
"; } ?>

Module Status

Plugin modules activation and status

'Planner', 'writer' => 'Writer', 'personalize' => 'Personalize', 'optimizer' => 'Optimizer', 'linker' => 'Linker' ]; foreach ($modules as $module => $name) { $enabled = get_option("igny8_{$module}_enabled", true); $status_color = $enabled ? 'green' : 'red'; $status_icon = $enabled ? '✓' : '✗'; echo "
$status_icon $name
"; } ?>