CrewAI instrumentation is available for Python only.
Set TCC environment variables
.env
Instrument CrewAI
Step 1: Install dependencies
Step 2: Add instrumentation
You’ll need to initialize instrumentation before CrewAI is imported. This is typically at the top of your application’s entry point (for example, inmain.py or app.py).
main.py
Adding custom metadata
Custom metadata allows you to add additional properties to your agent runs. This is particularly useful for tying agent runs to your own specific business logic, letting you filter and analyze agent runs by user, organization, feature, or some other dimension. CrewAI uses theset_metadata function to attach metadata to the next crew run:
main.py
The
tcc.* namespace is reserved. Only the reserved TCC metadata keys (tcc.runId, tcc.sessionId, tcc.conversational, tcc.agent, tcc.userId, tcc.userName, tcc.orgId, tcc.orgName) are recognized; any other tcc.* keys are ignored. None of them appear in your custom metadata.Adding user feedback
User feedback allows you to collect score (thumbs up & thumbs down) and text feedback (up to 2000 characters) from end users on your agent runs. This is useful for tracking user satisfaction, identifying problematic responses, and filtering agent runs in the dashboard to focus on positive or negative feedback.Step 1: Generate and pass a run ID
main.py
Step 2: Submit feedback from your client
Store therun_id on your client, then when the user provides feedback, submit it using the submit_feedback function.
Both score and text are optional individually, but each request must include at least one of them:
score is the thumbs rating. Use only "thumbs_up" or "thumbs_down".
text is written feedback from your user, up to 2000 characters.
feedback.py
Tracking agent sessions
Agent sessions represent multiple agent runs that are grouped together. The most common use case is tracking entire conversations between a human user and an AI agent in chatbot interfaces. Agent sessions can be tracked by settingtcc.sessionId in the set_metadata call:
main.py
session_id should be a unique identifier for the agent session. This can be any string, but it’s generally recommended to use a UUID.
Agent sessions are automatically indexed and can be filtered directly in the dashboard.
Marking runs as conversational
A conversational run is an agent run that was initiated by a user. Marking a run as conversational tells The Context Company that this run involves direct user interaction. This is important because conversational runs are the only runs monitored for user insights, such as user confusion, frustration, or any other custom insights you want to track. Runs that are not marked as conversational (e.g. background jobs, cron tasks, or internal automations) are excluded from user insight analysis. Mark a run as conversational by settingtcc.conversational to "true" in metadata:
main.py
Identifying the agent
If your product ships more than one named agent, set the reservedtcc.agent metadata key to scope the run to a specific agent. The dashboard’s top-level agent selector, per-agent patterns and recaps, and the agent filter on the REST API and MCP tools all read from this key.
main.py
Agent names that collide with reserved dashboard routes (for example
runs, sessions, patterns, recaps, overview, search, failures, feedback, tools, topics, views, settings, mcp-and-api) are dropped.Identifying users and organizations
Attach the end user and their organization to a run as first-class identity using the reservedtcc.userId, tcc.userName, tcc.orgId, and tcc.orgName metadata keys. This is not the same as adding a userId field to custom metadata — these keys promote user and org identity to dedicated dashboard filters and unlock native user/org search, per-user views, and per-org analytics. See User and organization identity for the full concept.
Set these whenever you have a stable identifier for the end user or their organization in your product.
main.py
tcc.userName and tcc.orgName require the corresponding ID (tcc.userId / tcc.orgId) to also be set. Names without IDs are dropped.Combining multiple options
You can combine all TCC options in a singleset_metadata call:
main.py
| Key | Type | Description |
|---|---|---|
tcc.sessionId | string | Session ID for grouping runs |
tcc.conversational | string | Set to "true" if this run involves user interaction |
tcc.runId | string | Custom run ID for feedback tracking |
tcc.agent | string | Agent name for first-class agent filtering |
tcc.userId | string | End user’s ID. Required if setting tcc.userName. |
tcc.userName | string | End user’s display name. Ignored unless tcc.userId is also set. |
tcc.orgId | string | End user’s organization ID. Required if setting tcc.orgName. |
tcc.orgName | string | Organization display name. Ignored unless tcc.orgId is also set. |
| Other keys | string | Custom metadata for filtering (tracked automatically) |
Async support
CrewAI instrumentation automatically captures both sync and async crew executions:main.py
