Autogenerates metrics documentation using the scripts/get_description.py script introduced in #17479 docs: add beta Closes scylladb/scylladb#18767
20 lines
324 B
ReStructuredText
20 lines
324 B
ReStructuredText
.. -*- mode: rst -*-
|
|
|
|
{{title}}
|
|
{{ '-' * title|length }}
|
|
|
|
{% if data %}
|
|
{% for key, value in data.items() %}
|
|
.. _metricsprop_{{ key }}:
|
|
|
|
.. metrics_option:: {{ key }}
|
|
:type: {{value[0]}}
|
|
:source: {{value[4]}}
|
|
:component: {{value[2]}}
|
|
:key: {{value[3]}}
|
|
|
|
{{value[1] | readable_desc_rst}}
|
|
|
|
{% endfor %}
|
|
{% endif %}
|