{% extends 'traffic/monitor/monitoring_form.html' %} {% block toolbar_channels %}class="active"{%endblock%} {% block page_content %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}{{ error|escape }}{% endfor %}
{% endif %}
{% csrf_token %}
{{form.realtime_limit_record_count}}
{% if form.realtime_limit_record_count.errors %} {{form.realtime_limit_record_count.errors|striptags}} {% else %} Store last N records of monitoring information in real time database. It is recommended to keep this value small to limit amount of consumed RAM. Default value is 10000 records. {%endif%}
Warning! It is not recommended to store red colored records in the persistent database. If you still require it - try to move the monitoring database to a separate server as indicated in the documentation. Do it at your own risk, your database may grow very quickly!
{{form.persistent_purge}}
{% if form.persistent_purge.errors %} {{form.persistent_purge.errors|striptags}} {% else %} Records older than specified number of days are removed from the monitoring database. This is required to keep the size of the database within appropriate limits. Greater number of days usually requires more free space on disk. Default value is 30 days. {%endif%}
{% endblock %}