get_tick_history
Retrieve recent tick history for a schedule or sensor to identify silent failures like skipped, failed, or missing ticks.
Instructions
Get recent tick history for a schedule or sensor — essential for detecting silent failures.
instigator_name: exact name of the schedule or sensor (from list_schedules/list_sensors)
instigator_type: 'SCHEDULE' or 'SENSOR'
limit: max ticks to return (default 20)
repository_name / location_name: optional, to disambiguate when the same name exists in several code locations (see list_schedules/list_sensors)
Returns per tick: tick_id, status (SUCCESS/FAILURE/SKIPPED), timestamp, error message (if failed), and run_ids (runs launched by this tick).
When to use: when a schedule or sensor is RUNNING but data is not being produced. Common patterns to look for:
All ticks SKIPPED: sensor condition not met, or misconfigured
Ticks with FAILURE status: the schedule/sensor code is erroring
Ticks with SUCCESS but empty run_ids: sensor evaluated but decided not to launch
Missing ticks: daemon may be unhealthy (check get_instance_status)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | ||
| limit | No | ||
| location_name | No | ||
| instigator_name | Yes | ||
| instigator_type | Yes | ||
| repository_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||