Docs › Temporal Schedules with RunVouch

Temporal Schedules with RunVouch

A Temporal Schedule starts workflows on time; a worker polling the task queue executes them. With no worker, workflow tasks wait in the queue indefinitely with no error, because from Temporal's point of view nothing is wrong yet.

How it runs on Temporal Schedules

Inside the workflow's first and last activity, or around the worker process if one workflow per process. Use the two HTTP calls from an activity (activities may do I/O; workflows must not).

Store the key

An environment variable on the worker.

Wrap the job

# activities.py (activities may do I/O; workflows must not)
import os, requests
from temporalio import activity
H = {"X-API-Key": os.environ["RUNVOUCH_KEY"], "content-type": "application/json"}

@activity.defn
async def start_run(agent: str) -> str:
    return requests.post("https://api.runvouch.com/v1/runs/start", headers=H, timeout=10,
                         json={"agent": agent, "source": "temporal"}).json()["run_id"]

@activity.defn
async def end_run(run_id: str, ok: bool, rows: int) -> None:
    requests.post("https://api.runvouch.com/v1/runs/end", headers=H, timeout=10,
                  json={"run_id": run_id, "status": "ok" if ok else "fail", "evidence": {"rows": rows > 0}})

# the schedule, once:  temporal schedule create --schedule-id nightly-report --cron "0 2 * * *" \
#   --workflow-type NightlyReport --task-queue reports

rv fails open: if RunVouch is unreachable the job still runs and you get one warning line.

Register the cadence and caps

rv agent nightly-report --cadence 24h --grace 30m --max-runtime 1h --evidence --cap-run-cost 2

Register the agent once, from anywhere with the key. Cadence is what turns a schedule that stopped into an alert; --evidence makes a run without evidence a failure; the caps pause the agent when it overspends.

What goes silent on Temporal Schedules

What RunVouch detects

AlertWhat it means here
MISSEDcadence plus grace passed and no run started
FAILEDnon-zero exit or a reported failure, with the stderr excerpt
NO_EVIDENCEthe run said ok but the file, URL or assertion you required is missing
STALLEDa run started and never ended within max runtime
RETRY_STORMthe same tool called with identical input many times in one run
BUDGET_RUN / BUDGET_DAYcost cap crossed; the agent is paused until you resume it
DRIFTduration or output size far off its 7-run baseline

Need a key? Get a free key · Stuck? contact