{% extends "fmd_base.html" %} {% block content %}

Configuration settings

Dashboard link /{{ details.link }}
Measurements database {{ config.database_name }}
Location of tests of monitored app {{ config.test_dir if config.test_dir != None else "Unspecified" }}
Username {{ config.username }}
Password {{ '*' * config.password|length }}
Guest username {{ config.guest_username }}
Guest password {{ config.guest_password }}
Collecting outlier data? {% if config.outliers_enabled %} Yes, with outlier_detection_constant = {{ config.outlier_detection_constant }} {% else %}No {% endif %}
Security token {{ '*' * config.security_token|length }}
Custom endpoint colors {% for key, value in config.colors.items() %} {{ key }}: {{ value }}
{% endfor %}
User specified timezone {{ config.timezone }}

Deployment details

Currently deployed version {{ details['config-version'] }}
First request in the currently deployed version {{ details['first-request-version'] }}
Monitoring Dashboard version {{ details['dashboard-version'] }}
First request since using the Monitoring Dashboard {{ details['first-request'] }}
Total amount of monitored requests {{ "{:,d}".format(details['total-requests']) }}
{% endblock %}