ðŸĶ€ {{title}}

{{subtitle}}

🚀
{{total_tasks}}
Async Tasks
Active: {{active_tasks}} | Completed: {{completed_tasks}} | Failed: {{failed_tasks}}
ðŸ”Ĩ
{{cpu_usage_avg}}%
CPU Usage
Peak: {{cpu_usage_peak}}% | Cores: {{cpu_cores}} | Context Switches: {{context_switches}}
ðŸ’ū
{{total_memory_mb}}MB
Memory Usage
Peak: {{peak_memory_mb}}MB | Allocations: {{total_allocations}} | Efficiency: {{memory_efficiency}}%
⚡
{{io_throughput}}MB/s
I/O Throughput
Read: {{total_read_mb}}MB | Write: {{total_write_mb}}MB | Ops: {{total_io_ops}}
🌐
{{network_throughput}}Mbps
Network Throughput
Sent: {{total_sent_mb}}MB | Received: {{total_received_mb}}MB | Latency: {{avg_latency}}ms
⚖ïļ
{{efficiency_score}}%
Overall Efficiency
Balance: {{resource_balance}}% | Bottlenecks: {{bottleneck_count}} | Optimization: {{optimization_potential}}%

ðŸĶ€ Rust Async Task Flow Analysis

📊 Futures: {{futures_count}} 🔄 Polled: {{total_polls}} ⏱ïļ Avg Poll Time: {{avg_poll_time}}Ξs ðŸŽŊ Ready Rate: {{ready_rate}}%
ðŸ”Ĩ CPU Intensive Tasks {{cpu_intensive_count}} {{cpu_avg_efficiency}}% efficiency
{{#each cpu_intensive_tasks}}
{{task_name}}
{{source_file}}:{{source_line}}
CPU: {{cpu_usage}}%
Cycles: {{cpu_cycles}}M
Instructions: {{instructions}}M
Cache Misses: {{cache_misses}}K
{{status}} {{duration_ms}}ms
{{/each}}
ðŸ’ū Memory Intensive Tasks {{memory_intensive_count}} {{memory_avg_efficiency}}% efficiency
{{#each memory_intensive_tasks}}
{{task_name}}
{{source_file}}:{{source_line}}
Allocated: {{allocated_mb}}MB
Peak: {{peak_memory_mb}}MB
Allocations: {{allocation_count}}
Fragmentation: {{heap_fragmentation}}%
{{status}} {{duration_ms}}ms
{{/each}}
⚡ I/O Intensive Tasks {{io_intensive_count}} {{io_avg_efficiency}}% efficiency
{{#each io_intensive_tasks}}
{{task_name}}
{{source_file}}:{{source_line}}
Read: {{bytes_read_mb}}MB
Write: {{bytes_written_mb}}MB
Latency: {{avg_latency_us}}Ξs
Queue Depth: {{queue_depth}}
{{status}} {{duration_ms}}ms
{{/each}}
🌐 Network Intensive Tasks {{network_intensive_count}} {{network_avg_efficiency}}% efficiency
{{#each network_intensive_tasks}}
{{task_name}}
{{source_file}}:{{source_line}}
Sent: {{bytes_sent_mb}}MB
Received: {{bytes_received_mb}}MB
Connections: {{active_connections}}
Latency: {{avg_latency_ms}}ms
{{status}} {{duration_ms}}ms
{{/each}}

🔎 Advanced Rust Async Analytics

🚀 Future Polling Insights

Total Polls: {{total_polls}}
Avg Poll Duration: {{avg_poll_duration}}Ξs
Ready Immediately: {{immediate_ready_percent}}%
Waker Efficiency: {{waker_efficiency}}%

🧠 Memory Management

Total Allocations: {{total_allocations}}
Peak Allocation Rate: {{peak_alloc_rate}}/s
Memory Fragmentation: {{avg_fragmentation}}%
GC Pressure: {{gc_pressure}}%

⚡ Async Runtime Health

Executor Utilization: {{executor_utilization}}%
Task Queue Length: {{avg_queue_length}}
Blocking Tasks: {{blocking_tasks_count}}
Deadlock Risk: {{deadlock_risk}}%