Back to Posthog

Trigger

posthog/templates/admin/health_checks/trigger.html

1.43.11.5 KB
Original Source

{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ super }} {% endblock %} {% block content %}

← Back to health checks

{% if messages %} {% for message in messages %} {{ message }} {% endfor %} {% endif %} Kind{{ config.kind }}Name{{ config.name }}Owner{{ config.owner }}Schedule{% if config.schedule %}{{ config.schedule }}{% else %}Manual only{% endif %}

Trigger workflow

{% csrf_token %} {{ form.dry_run }} Dry run {% if form.dry_run.help_text %}

{{ form.dry_run.help_text }}

{% endif %} {{ form.dry_run.errors }}

Batch size {{ form.batch_size }} {% if form.batch_size.help_text %}

{{ form.batch_size.help_text }}

{% endif %} {{ form.batch_size.errors }}

Max concurrent {{ form.max_concurrent }} {% if form.max_concurrent.help_text %}

{{ form.max_concurrent.help_text }}

{% endif %} {{ form.max_concurrent.errors }}

Rollout percentage {{ form.rollout_percentage }} {% if form.rollout_percentage.help_text %}

{{ form.rollout_percentage.help_text }}

{% endif %} {{ form.rollout_percentage.errors }}

Active since (days) {{ form.active_since_days }} {% if form.active_since_days.help_text %}

{{ form.active_since_days.help_text }}

{% endif %} {{ form.active_since_days.errors }}

Team IDs {{ form.team_ids }} {% if form.team_ids.help_text %}

{{ form.team_ids.help_text }}

{% endif %} {{ form.team_ids.errors }}

Recent runs

{% include "admin/health_checks/_run_history.html" %}

{% endblock %}