<%= environment.name %>

<%= environment.location %>

Provider: <%= (environment.provider || '').toUpperCase() %> Region: <%= environment.region %> Role: <%= (environment.role || '').charAt(0).toUpperCase() + (environment.role || '').slice(1) %> Status: <%= (status.status || '').charAt(0).toUpperCase() + (status.status || '').slice(1) %>

Health Status

Cluster Health <%= (status.cluster_health || '').charAt(0).toUpperCase() + (status.cluster_health || '').slice(1) %>
Uptime <%= status.uptime_days %> days
Last Health Check <%= status.last_health_check ? status.last_health_check.substring(0, 19) : 'N/A' %>

Resources

Nodes <%= status.node_count %>
Pods Running <%= status.pods_running %>/<%= status.pods_total %>
CPU Usage <%= status.cpu_usage_percent %>%
Memory Usage <%= status.memory_usage_percent %>%

Network

Inbound <%= status.network_in_mbps %> Mbps
Outbound <%= status.network_out_mbps %> Mbps

Metrics (24h)

Deployment History

<% deployments.forEach(deployment => { %>
<%= deployment.id %>
<%= deployment.started_at ? deployment.started_at.substring(0, 19) : 'N/A' %> - <%= (deployment.strategy || '').toUpperCase() %> - <%= deployment.version || 'N/A' %>
<%= (deployment.status || '').toUpperCase() %>
<% }); %>