{% extends "base.html" %} {% load i18n %} {% load promgen %} {% block content %} {% breadcrumb project 'Register Exporter' %}
{% csrf_token %}
Exporter

See the Prometheus documentation for additional information regarding job names

Generally a job name should describe the component being monitored. For exporters, the -exporter should be dropped, so node_exporter becomes just node or jmx_exporter becomes jmx

When using something such as micrometer which supports prometheus, the job name should be micrometer, not micrometer-prometheus

If there are no other job names that make sense, app can be used as a general substitute

{{ form.as_table }}
Presets
{% for default in DEFAULT_EXPORTERS %}
{% csrf_token %}
{% trans "Test" %}
{% endfor %}
{% endblock %}