Built specifically for Google ADK with support for LlmAgent, SequentialAgent, and Runner execution tracking.
Monitor multi-agent communication with native Agent-to-Agent protocol support and visualization.
Track token usage and costs across all models. Gemini 2.0 Flash is FREE!
See traces as they happen with live execution monitoring and instant alerts.
Monitor all tool executions with inputs, outputs, and error tracking.
Comprehensive analytics for performance, costs, and agent behavior patterns.
1. Install SDK
pip install agentops-monitor
2. Wrap your ADK agent
from agentops_monitor import monitor_runner
from google.adk.agents import LlmAgent
from google.adk.runners import Runner
agent = LlmAgent(name="MyAgent", model="gemini-2.0-flash")
runner = Runner(agent)
# Add monitoring with 1 line
monitored_runner = monitor_runner(runner, api_key="agentops_xxx")
monitored_runner.run("Hello!")3. View in dashboard
Open your dashboard to see real-time traces, costs, and performance metrics!