{% extends "apps/base.html" %} {% block header %}

{{ app }}

{% endblock %} {% block navbar %} {% endblock %} {% block app-content %} {% if auto_scale %}

Start with units: {{ auto_scale.minUnits }}

Scale up

Expression: {{ auto_scale.scaleUp.metric }} {{ auto_scale.scaleUp.operator }} {{ auto_scale.scaleUp.value }}

Step (in units): {{ auto_scale.scaleUp.step }}

Wait time (in seconds): {{ auto_scale.scaleUp.wait }}

Scale down

Expression: {{ auto_scale.scaleDown.metric }} {{ auto_scale.scaleDown.operator }} {{ auto_scale.scaleDown.value }}

Step (in units): {{ auto_scale.scaleDown.step }}

Wait time (in seconds): {{ auto_scale.scaleDown.wait }}

{% if events %}

events

{% for event in events %} {% if event.Action.Name != "enable_alarm" and event.Action.Name != "disable_alarm" %} {% endif %} {% endfor %}
action start end successful error
{{ event.Action.Name}} {{ event.StartTime }} {{ event.EndTime }} {{ event.Successful }} {{ event.Error }}
{% endif %} remove auto scale {% else %} add auto scale {% endif %} {% endblock %}