Google ADK

Trace Google ADK with Respan via OpenInference instrumentation.

Setup

$pip install respan-ai openinference-instrumentation-google-adk
1from respan import Respan
2from respan_instrumentation_openinference import OpenInferenceInstrumentor
3from openinference_instrumentation_google_adk import GoogleADKInstrumentor
4
5respan = Respan(
6 instrumentations=[
7 OpenInferenceInstrumentor(instrumentor=GoogleADKInstrumentor())
8 ]
9)
10
11# Your Google ADK code here - all calls are auto-traced

What gets traced

All Google ADK operations are auto-instrumented:

  • LLM calls with model, tokens, and input/output
  • Tool executions
  • Agent workflows and task chains

Traces appear in the Traces dashboard.

Learn more