{% if at_risk and at_risk|length > 0 %}

At Risk Deployments

Deployments predicted to breach resource limits based on current growth trends.

{% for fc in at_risk %}
{{ fc.risk_level }}
{{ fc.deployment_name }}

{{ fc.summary }}

CPU: {{ fc.cpu_forecast.trend }}{% if fc.cpu_forecast.days_until_request_breach %} · breach in {{ fc.cpu_forecast.days_until_request_breach|round(0)|int }}d{% endif %} Mem: {{ fc.memory_forecast.trend }}{% if fc.memory_forecast.days_until_request_breach %} · breach in {{ fc.memory_forecast.days_until_request_breach|round(0)|int }}d{% endif %}
{% endfor %}
{% endif %}