Guide
A CrewAI crew runs multiple agents through a sequence of tasks, each calling the model. AgentPing instruments the crew so one record lands per kickoff with the cost and output behind it, across every agent and task.
Install the SDK and point it at your CrewAI agent. One record lands per run with the cost, status, latency and output behind it.
pip install agentping
import agentping
agentping.init(api_key="apk_…", agent="content-crew")
agentping.instrument_crewai()
# Run your crew exactly as before; every agent and task is captured.
result = crew.kickoff(inputs={"topic": "…"})
One call to instrument_crewai() captures every agent and task in the crew under a single run per kickoff. Full reference is in the docs.
Add the SDK, send one run, and watch cost, status and quality land in the dashboard.