Installation
Setup
Usage
What gets traced
| CrewAI Component | Span Kind | Description |
|---|---|---|
Crew.kickoff / kickoff_for_each | CHAIN | Root trace boundary, crew configuration as system message |
Agent.execute_task | AGENT | Agent backstory as system message, prior agent context |
| LLM completion calls | LLM | Token delta tracking (per-call usage), reasoning extraction |
execute_tool_and_check_finality | TOOL | Tool name from AgentAction, input/output |
Multi-agent support
In multi-agent crews, PandaProbe tracks context propagation between agents. Each agent’s output is made available as context for subsequent agents, and this is reflected in the trace hierarchy.Token usage
CrewAI token usage is computed using delta tracking: the adapter snapshots the agent’s cumulative_token_usage before and after each LLM call to determine per-call token counts.
| CrewAI Field | PandaProbe Field |
|---|---|
prompt_tokens | prompt_tokens |
completion_tokens | completion_tokens |
total_tokens | total_tokens |
cached_prompt_tokens | cache_read_tokens |
reasoning_tokens | reasoning_tokens |
