The activities data table associated with your workspace logs record enrolments, node executions, and success/failure outcomes across all your tools and plays. These logs provide real-time visibility into how your workflows are performing—helping you identify bottlenecks, debug errors, and discover optimization opportunities.Documentation Index
Fetch the complete documentation index at: https://docs.getcargo.ai/llms.txt
Use this file to discover all available pages before exploring further.
You can query activities data from your data warehouse’s query editor, a
Cargo data model, or the Sandbox query editor in the System of Record
section of your workspace settings.
- Adapt query syntax for your database (BigQuery or Snowflake) - If using your own data warehouse, the dataset name matches the Dataset name from your System of Record configuration - If using Cargo’s managed Snowflake, contact the Cargo team for connection details
Understanding the activities table
The activities data is stored in thecompute__activities table with the following structure:
| Column | Description |
|---|---|
_id | Unique identifier for each activity |
_time | Timestamp when the activity occurred |
kind | Type of activity (see below) |
model_uuid | Reference to the data model (if applicable) |
workflow_uuid | Reference to the workflow |
play_uuid | Reference to the play (if applicable) |
tool_uuid | Reference to the tool (if applicable) |
segment_uuid | Reference to the segment (for segment activities) |
context | JSON object containing detailed activity information |
Activity types
| Kind | Description |
|---|---|
workflowNodeExecuted | A specific node in a workflow completed execution |
workflowEntered | A record entered a workflow |
workflowLeft | A record exited a workflow |
segmentEntered | A record entered a segment |
segmentLeft | A record left a segment |
Example: Track workflow node executions
Query all node executions for a specific workflow, including their status and any error messages:- BigQuery
- Snowflake
Example: Track workflow throughput
Monitor how many records enter and exit your workflows over time:- BigQuery
- Snowflake
Example: Identify failing nodes
Find nodes with the highest error rates:- BigQuery
- Snowflake
Table naming conventions
Depending on your System of Record scope, use the appropriate table reference:| Scope | Table reference |
|---|---|
| BigQuery project-level | [PROJECT_ID].[DATASET].compute__activities |
| BigQuery dataset-level | [DATASET].compute__activities |
| Snowflake database-level | [DATABASE]._compute.activities |
| Snowflake schema-level | [DATABASE].[SCHEMA]._compute__activities |

