Skip to main content

Wide Event Logging & Observability for Google ADK Agents

Project description

🤖 adk-agentic-logging

Python Version License: MIT

adk-agentic-logging transforms the observability of AI agents from a fragmented stream of text into a structured, queryable dataset.

Its core philosophy is the "Wide Event" model: capturing the entire lifecycle of an agentic interaction—including HTTP context, OpenTelemetry trace headers, and deep ADK internal state—into a single, high-cardinality JSON artifact per request.

By seamlessly bridging web frameworks with Google Cloud’s ecosystem, it enforces a "zero-config" standard that eliminates scattered debug prints, turning complex AI behavior into transparent insights from day one.


✨ Features

  • � One Request = One Log Line: Aggregates all context into a single JSON object emitted at the end of the request.
  • 🧠 Deep ADK Observability: Automatically captures token usage, tool calls, and session metadata.
  • ☁️ Zero-Config GCP: Automatic detection of project ID and environment metadata.
  • 🔍 Trace-Aware: Injects OpenTelemetry trace_id and span_id for seamless Cloud Trace linking.
  • �🔌 Framework Agnostic: First-class support for FastAPI, Flask, and Django.
  • 🧹 Vertex AI Trace Sanitization: Surgically removes large JSON payloads (prompts, tool definitions) from Cloud Trace spans to reduce noise and cost.
  • ⚡ Supercharged Tracing: One-line enablement of full Google Cloud Trace with automatic correlation to internal ADK spans.

📦 Installation

# Core library
uv pip install adk-agentic-logging

# With Google Cloud Tracing capabilities
uv pip install "adk-agentic-logging[google-adk]"

⚡ Supercharged Tracing (Unified Observability)

The configure_logging function is your unified entry point for observability. It activates full Google Cloud Tracing or Console Tracing with a single line of code, handling OTel configuration and GCP project detection automatically.

Crucially, adk-agentic-logging is lazy. It will not touch OpenTelemetry or initialize any SDK providers until you explicitly call configure_logging().

Usage Examples

1. Local Development (Console Only)

By default, console tracing is enabled with beautiful Rich formatting.

from adk_agentic_logging import configure_logging

# Console tracing is ON by default
configure_logging()

2. Production (Google Cloud Trace)

Enable GCP export for production. If project_id is omitted, it is auto-detected from the environment.

configure_logging(enable_google_tracing=True)

3. Mixed Mode / Advanced

You can toggle exporters independently and specify an explicit project ID.

configure_logging(
    enable_google_tracing=True,
    enable_console_tracing=False, # Silence console logs in production
    project_id="my-custom-gcp-project"
)

Configuration Parameters

Parameter Default Description
enable_google_tracing False Enables export to Google Cloud Trace. Requires [google-adk] extra.
enable_console_tracing True Enables local console output via RichConsoleSpanExporter.
project_id None Explicit GCP Project ID. If None, auto-detects from metadata or env.

[!TIP] This unified configuration automatically manages BatchSpanProcessor settings, environment variables for log correlation, and instruments the Google Generative AI SDK if installed.


🚀 Quick Start

1. Integrate with your Web Framework

FastAPI

from fastapi import FastAPI
from adk_agentic_logging.integrations.fastapi import AgenticLoggingMiddleware

app = FastAPI()
app.add_middleware(AgenticLoggingMiddleware)

Flask

from flask import Flask
from adk_agentic_logging.integrations.flask import AgenticLogging

app = Flask(__name__)
agentic_logging = AgenticLogging(app)

Django

Add to your MIDDLEWARE in settings.py:

MIDDLEWARE = [
    ...,
    "adk_agentic_logging.integrations.django.AgenticLoggingMiddleware",
    ...,
]

2. Instrument your ADK Agent

Use @instrument_runner to automatically capture internal state from your ADK runners.

from adk_agentic_logging.adk.instrumentation import instrument_runner

class MyAgentRunner:
    @instrument_runner
    def run(self, runner_input, **kwargs):
        # Your ADK agent logic
        return result

3. Enrich with Agent Context

You can explicitly enrich the wide event with any context, such as the user's question and the agent's response, using log_ctx.

from adk_agentic_logging import log_ctx

# In your agent logic or route handler
log_ctx.enrich(
    question="What is the weather in Paris?",
    response="The weather in Paris is sunny with 22°C."
)

Adding these fields makes your logs easily queryable for specific interactions.

Cost Optimization & Sanitization

Traces can become expensive if they capture massive LLM prompts and responses. adk-agentic-logging includes a Vertex AI Sanitizer that automatically strips these large payloads from your traces (Waterfall UI) while keeping them safely in your structured logs.

This gives you the best of both worlds: lightweight, low-cost Waterfall traces and full-fidelity logs for debugging.

The sanitizer is enabled by default when you use configure_logging().

# Everything is handled: OTel, Exporters, and Sanitization
configure_logging(enable_google_tracing=True)

🛠️ How It Works

  1. Context Initialization: When a request starts, the middleware initializes a thread-local log context and resolves GCP/OTel metadata.
  2. Execution: As your code runs, arbitrary metadata is attached or captured automatically via ADK instrumentation.
  3. Aggregation: Content is held in a "bucket" bound to the current request.
  4. Emission: On request completion, a single structured JSON blob (HTTP info, performance metrics, ADK stats, errors) is emitted to stdout.

📄 License

This project is licensed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adk_agentic_logging-0.2.0.tar.gz (108.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adk_agentic_logging-0.2.0-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file adk_agentic_logging-0.2.0.tar.gz.

File metadata

  • Download URL: adk_agentic_logging-0.2.0.tar.gz
  • Upload date:
  • Size: 108.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for adk_agentic_logging-0.2.0.tar.gz
Algorithm Hash digest
SHA256 601e810efcf096a9e2f7c17605e0fc8f5c23aeee8659ec1276fc7d26c8c1029a
MD5 067c361209c65dae52657cc7cf479ff5
BLAKE2b-256 00508b2b51fec1d2662532855d8fb653c9b23a70d1f546c0cf84eebc50d07d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for adk_agentic_logging-0.2.0.tar.gz:

Publisher: publish.yaml on scauchet-google/adk-agentic-logging

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adk_agentic_logging-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for adk_agentic_logging-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3455e0af85189c2b3fc8b30b887fb3d1ab7f6df440e7ec130c42a0436b637d08
MD5 c9d8fd821f3309c6971e3363d60e262f
BLAKE2b-256 bb019ebd12a932fcc0677598ee4899b054d5866fd2475ff6076acc94274d1310

See more details on using hashes here.

Provenance

The following attestation bundles were made for adk_agentic_logging-0.2.0-py3-none-any.whl:

Publisher: publish.yaml on scauchet-google/adk-agentic-logging

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page