Cron Mode — Job Reliability

Success rate
{% if success_rate is not none %}{{ success_rate | round(1) }}%{% else %}—{% endif %}
Telegram alerts sent
{{ telegram_alerts if telegram_alerts is not none else "—" }}
Hard budget enforcements
{{ budget_enforcements if budget_enforcements is not none else "—" }}

Job Success / Failure Rate (today)

{% if job_stats %} {% for job in job_stats %} {% endfor %}
JobRunsSuccessFailedRate
{{ job.name }} {{ job.total }} {{ job.success }} {{ job.failed }} {{ job.rate | round(1) }}%
{% else %}

No cron job telemetry today. Cron job attribution requires the TOKENPAK_JOB_NAME env var or SDK annotation.

{% endif %}

Hard Budget Enforcements

{% if budget_enforcements is not none and budget_enforcements > 0 %}

{{ budget_enforcements }} request(s) were hard-capped by budget enforcement today. Check your budget configuration.

{% elif budget_enforcements is not none %}

No budget enforcements today.

{% else %}

Budget enforcement tracking requires proxy ≥ v1.4.

{% endif %}

Telegram Alerts

{% if telegram_alerts is not none and telegram_alerts > 0 %}

{{ telegram_alerts }} alert(s) sent today via Telegram.

{% elif telegram_alerts is not none %}

No Telegram alerts sent today.

{% else %}

Telegram alerts not configured. Set TOKENPAK_TELEGRAM_TOKEN and TOKENPAK_TELEGRAM_CHAT_ID to enable.

{% endif %}