Update metric type based on definition, add detailed description

- Update metric type based on definition
- Add detailed description for metric type if defined
This commit is contained in:
Jeroen De Meerleer 2024-06-05 08:22:08 +02:00
parent 81255d0b27
commit 2ffac2254c
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6

View File

@ -2,7 +2,7 @@
{% if metric.help is defined and metric.help is not empty %}
# HELP {{ key }} {{ metric.help }}
{% endif %}
# TYPE {{ key }} gauge
# TYPE {{ key }} {% if metric.type is defined and metric.type is not empty %}{{ metric.help }}{% else %}gauge{% endif %}
{% for subkey, submetric in metric.submetrics %}
{{ key }}{% if submetric.labels is defined and submetric.labels is not empty %}{{ '{' }}{% for label, value in submetric.labels %}{{ label }}="{{ value }}"{% if not loop.last %},{% endif %}{% endfor %}{{ '}' }}{% endif %} {{ submetric.value }}
{% endfor %}