Revert "fix(jobspec): Delete ipsec nfv density tests"
[csit.git] / fdio.infra.ansible / roles / nomad / templates / telemetry.hcl.j2
index 256c699..14be0d9 100644 (file)
@@ -1,20 +1,26 @@
+{% if nomad_use_telemetry | bool == True %}
 telemetry {
-    # Telemetry provider parameters
-    {% for key, value in nomad_telemetry_provider_parameters.items() -%}
-    {% if value|bool -%}
-    {{ key }} = {{ value | bool | lower }}
-    {% elif value|string or value == "" -%}
-    {{ key }} = "{{ value }}"
-    {% else %}
-    {{ key }} = {{ value }}
-    {% endif -%}
-    {% endfor -%}
+    # Specifies if gauge values should be prefixed with the local hostname.
+    disable_hostname = {{ nomad_telemetry_disable_hostname | bool | lower }}
 
-    # Common parameters
-    disable_hostname = {{ nomad_disable_hostname | bool | lower }}
-    collection_interval = "{{ nomad_collection_interval }}"
-    use_node_name = {{ nomad_use_node_name | bool | lower }}
-    publish_allocation_metrics = {{ nomad_publish_allocation_metrics | bool | lower }}
-    publish_node_metrics = {{ nomad_publish_node_metrics | bool | lower }}
-    backwards_compatible_metrics = {{ nomad_backwards_compatible_metrics | bool | lower }}
+    # Specifies the time interval at which the Nomad agent collects telemetry
+    # data.
+    collection_interval = "{{ nomad_telemetry_collection_interval }}"
+
+    # Specifies if gauge values should be prefixed with the name of the node,
+    # instead of the hostname. If set it will override disable_hostname value.
+    use_node_name = {{ nomad_telemetry_use_node_name | bool | lower }}
+
+    # Specifies if Nomad should publish runtime metrics of allocations.
+    publish_allocation_metrics = {{ nomad_telemetry_publish_allocation_metrics | bool | lower }}
+
+    # Specifies if Nomad should publish runtime metrics of nodes.
+    publish_node_metrics = {{ nomad_telemetry_publish_node_metrics | bool | lower }}
+
+    # Specifies whether the agent should make Prometheus formatted metrics
+    # available at /v1/metrics?format=prometheus.Specifies whether the agent
+    # should make Prometheus formatted metrics available at
+    # /v1/metrics?format=prometheus.
+    prometheus_metrics = {{ nomad_telemetry_prometheus_metrics | bool | lower }}
 }
+{% endif %}