mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
* add the new docs * Update to latest comprehensive docs from mintlify2 branch - Add conversations, jobs, triggers guides - Complete tools documentation - Enhanced RAG and agents docs - Add UI screenshots and images - Update contribution guide and quickstart * added intro gif * Update introduction.mdx with intro gif * Add public/videos folder with Intro-Video.gif for proper Next.js/Mintlify serving * updated gif * Update introduction.mdx to have a working intro gif
45 lines
No EOL
1.8 KiB
Text
45 lines
No EOL
1.8 KiB
Text
---
|
|
title: "Jobs"
|
|
description: "Monitor and inspect all your trigger executions and job runs"
|
|
icon: "message"
|
|
---
|
|
|
|
## Overview
|
|
|
|
The Jobs page in Rowboat provides a comprehensive view of all your automated job executions. Here you can monitor the status of your triggers, inspect what happened during each run, and troubleshoot any issues that may have occurred.
|
|
|
|
<Frame>
|
|
<img src="/docs/img/jobs-ui.png" className="w-full max-w-[800px] rounded-xl" alt="Jobs page showing list of all job runs with status indicators" />
|
|
</Frame>
|
|
|
|
## What You'll See
|
|
|
|
The Jobs page displays a list of all job runs from your triggers, including:
|
|
|
|
- **External trigger executions** from webhook events
|
|
- **One-time trigger runs** from scheduled jobs
|
|
- **Recurring trigger executions** from cron-based schedules
|
|
|
|
Each job run displays the following key information:
|
|
- **Job ID**: Unique identifier for the job run
|
|
- **Status**: Indicates if the job succeeded, failed, or is in progress
|
|
- **Reason**: The trigger or cause for the job (e.g., external trigger, scheduled, cron)
|
|
- **Created Time**: When the job was executed
|
|
|
|
## Viewing Job Details
|
|
|
|
### Expand a Job Run
|
|
|
|
Click on any job run to expand it and see detailed information about what happened during execution:
|
|
|
|
<Frame>
|
|
<img src="/docs/img/jobs-inside-run.png" className="w-full max-w-[800px] rounded-xl" alt="Job run details showing expanded information for a specific job" />
|
|
</Frame>
|
|
|
|
**Basic job details**: Job ID, Status, creation time, Updated time, Conversation ID and Turn ID. By clicking on the Conversation ID, you can view more in-depth details about the run.
|
|
|
|
**Job Reason**: Why the job triggered - either external trigger, scheduled, or cron.
|
|
|
|
**Job Input**: The input data sent to your assistant.
|
|
|
|
**Job Output**: The final output produced by your agents. |