1.7.30. 메트릭 드롭 (업)
1.7.30.1. 방법
1.7.30.1.1. errors
실패한 제출 후 이 모델의 형식이 렌더링되면 발생한 오류가 반환됩니다.
{{ metric.errors.name | inline_errors }}1.7.30.1.2. 단위
메트릭의 단위를 반환합니다.
This metric is measured in {{ metric.unit | pluralize }}1.7.30.1.3. description
메트릭에 대한 설명을 반환합니다.
1.7.30.1.4. name
메트릭의 이름을 반환합니다.
<h4>Metric {{ metric.name }}</h4>
<p>{{ metric.description }}</p>1.7.30.1.5. system_name
이 메트릭의 시스템 이름을 반환합니다.
<h4>Metric {{ metric.name }}</h4>
<p>{{ metric.system_name }}</p>1.7.30.1.6. usage_limits
메트릭의 사용량 제한을 반환합니다.
{% if metric.usage_limits.size > 0 %}
<p>Usage limits of the metric</p>
<ul>
{% for usage_limit in metric.usage_limits %}
<li>{{ usage_limit.period }} : {{ usage_limit.value }}</li>
{% endfor %}
</ul>
{% else %}
<p>This metric has no usage limits</p>
{% endif %}1.7.30.1.7. pricing_rules
메트릭의 가격 규칙을 반환합니다.
{% if metric.pricing_rules.size > 0 %}
<p>Pricing rules of the metric</p>
<ul>
{% for pricing_rule in metric.pricing_rules %}
<li>{{ pricing_rule.cost_per_unit }}</li>
{% endfor %}
</ul>
{% else %}
<p>This metric has no pricing rules</p>
{% endif %}