get_gravity_task_status
Check a Gravity task's status and data collection progress to know if it is running, completed, or pending and how many records/bytes each crawler collected.
Instructions
Get the status of a Gravity task and see how much data has been collected.
Parameters:
gravity_task_id (str, REQUIRED): The ID of the gravity task to check
include_crawlers (bool, default: True): Whether to include detailed crawler information Set to True to see records_collected and bytes_collected for each crawler
Returns:
Task status (Running, Completed, Pending, etc.)
Task name and start time
List of crawler IDs (needed for build_dataset)
When include_crawlers=True: records_collected, bytes_collected per crawler
Example: get_gravity_task_status(gravity_task_id="multicrawler-9f518ae4-xxxx-xxxx-xxxx-8b73d7cd4c49")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gravity_task_id | Yes | ||
| include_crawlers | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |