{% extends "fmd_base.html" %} {% block content %}
| 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 }} |
| Current deployed version | {{ details['config-version'] }} |
| Monitoring Dashboard version | {{ details['dashboard-version'] }} |
| Measurements database | {{ config.database_name }} |
| First Request | {{ details['first-request'] }} |
| Total amount of monitored requests | {{ "{:,d}".format(details['total-requests']) }} |