Number of days to track detection frequency. Opportunities are reported as "detected in X of the last Y days".
{% if errors and errors.get('lookback_window_days') %}
{{ errors['lookback_window_days'][0] }}
{% endif %}
Number of consecutive days without detection before an opportunity is marked as resolved.
{% if errors and errors.get('resolution_period_days') %}
{{ errors['resolution_period_days'][0] }}
{% endif %}
Watched Rules
Choose which optimization rules Governor watches for this project.
{% if detection_analysis_surfaces %}
{% for surface in detection_analysis_surfaces %}
{{ surface.title }}
{{ surface.description }}
{% endfor %}
{% endif %}
{% if unknown_watched_rule_types %}
Some submitted rule ids are no longer available: {{ unknown_watched_rule_types | join(', ') }}.
{% endif %}
{% if detection_rule_groups %}
{% for group in detection_rule_groups %}
{% endfor %}
{% else %}
No project-level detection rules are currently registered.
{% endif %}
Leaving every rule unchecked is valid and means Governor will skip project-level detection for this configuration.
{% if errors and errors.get('watched_rule_types') %}
{{ errors['watched_rule_types'][0] }}
{% endif %}