{% from 'message_box.html' import message_box %} {% macro render_status(status, active, sdk_version, pending, test_url, reload_url) %}
| {% trans %}Sentry host{% endtrans %} |
{%- if status.dsn_host -%}
{{ status.dsn_host }}
({% trans source=status.dsn_source %}from {{ source }}{% endtrans %})
{%- else -%}
{% trans %}not configured{% endtrans %}
{%- endif -%}
|
| {% trans %}Environment{% endtrans %} | {{ status.environment or '-' }} |
| {% trans %}Release{% endtrans %} | {{ status.release or '-' }} |
| {% trans %}Integrations{% endtrans %} | {{ status.integrations|join(', ') or '-' }} |
| {% trans %}Versions{% endtrans %} | {% trans %}plugin{% endtrans %} {{ status.plugin_version }}, sentry-sdk {{ sdk_version }} |
{% trans -%} Sentry is configured once per worker process. Settings marked "requires a restart" only take effect after Indico is restarted; "Reload in this worker" applies them to the single process serving this page, which is useful for testing a new DSN. {%- endtrans %}