{% extends "base.html" %} {% block title %}Overview{% endblock %} {% block content %}
You can potentially save {{ total_slack_cost|money }} USD every month by optimizing resource requests and reducing slack.
{% if alpha_ema < 1 %}
Remember that you are using EMA (Exponential Moving Average). What you see are not current values, these values are averaged.
{% endif %}

CPU

{{ total_usage['cpu']|cpu }} used {{ total_requests['cpu']|cpu }} requested {{ total_allocatable['cpu']|cpu }} allocatable

Memory

{{ total_usage['memory']|filesizeformat(True) }} used {{ total_requests['memory']|filesizeformat(True) }} requested {{ total_allocatable['memory']|filesizeformat(True) }} allocatable

Resource-based Pricing

Price per vCPU is {{ '{:,.04f}'.format(total_cost_per_user_request_hour.cpu) }} USD per hour and per GiB memory is {{ '{:,.04f}'.format(total_cost_per_user_request_hour.memory) }} USD per hour.

Notifications

{% for notification in notifications: %}
{{ notification[1] }}
{% else %}

No warnings or errors to report.

{% endfor %} {% endblock %}