[PR #2361] [MERGED] docs: Add LangGraph support to BigQuery callback handler documentation #2360

Closed
opened 2026-02-17 17:23:20 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2361
Author: @caohy1988
Created: 1/26/2026
Status: Merged
Merged: 2/10/2026
Merged by: @mdrxy

Base: mainHead: docs/bigquery-callback-langgraph-support


📝 Commits (4)

  • ed9d1a3 docs: Add LangGraph support documentation to BigQuery callback handler
  • 33edd5a fix: Update imports from langchain_core to langchain
  • eae4656 docs: Update BigQuery callback docs to match latest implementation
  • b327c06 fix: resolve PR review comments for BigQuery callback docs

📊 Changes

1 file changed (+281 additions, -321 deletions)

View changed files

📝 src/oss/python/integrations/callbacks/google_bigquery.mdx (+281 -321)

📄 Description

Depends on https://github.com/langchain-ai/langchain-google/pull/1538#

Summary

This PR updates the BigQuery callback handler documentation to include comprehensive LangGraph support features that were added in langchain-ai/langchain-google#1538.

What's new in the documentation:

  • Updated description - Mentions LangGraph support alongside LangChain
  • Key features section - Highlights LangGraph detection, latency tracking, event filtering, graph context manager, and real-time dashboard
  • LangGraph integration section - Explains automatic node detection and new event types
  • Event types table - Documents NODE_STARTING, NODE_COMPLETED, GRAPH_START, GRAPH_END events
  • Graph context manager - Shows how to use graph_context() for execution boundaries
  • Latency tracking - Includes SQL query example for analytics
  • Event filtering - Demonstrates allowlist/denylist configuration
  • Updated example code - Uses LangGraph's create_react_agent with proper configuration
  • Examples and resources section - Links to example agent, Jupyter notebook, and FastAPI webapp

LangGraph Event Types Table

Event Type Description
NODE_STARTING Emitted when a LangGraph node begins execution
NODE_COMPLETED Emitted when a LangGraph node finishes successfully
NODE_ERROR Emitted when a LangGraph node fails
GRAPH_START Emitted at the start of graph execution (via context manager)
GRAPH_END Emitted at the end of graph execution (via context manager)
GRAPH_ERROR Emitted when graph execution fails (via context manager)

Test plan

  • Verified example code runs successfully with LangGraph agent
  • Confirmed events are logged to BigQuery with correct event types
  • Tested graph_context() emits GRAPH_START/GRAPH_END events
  • Validated SQL query examples return expected results

Related PRs

🤖 Generated with Claude Code


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/2361 **Author:** [@caohy1988](https://github.com/caohy1988) **Created:** 1/26/2026 **Status:** ✅ Merged **Merged:** 2/10/2026 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `docs/bigquery-callback-langgraph-support` --- ### 📝 Commits (4) - [`ed9d1a3`](https://github.com/langchain-ai/docs/commit/ed9d1a3f589658740873476755ad35c9d16ec1ae) docs: Add LangGraph support documentation to BigQuery callback handler - [`33edd5a`](https://github.com/langchain-ai/docs/commit/33edd5a8e9185902dee8b8fd43b6c53dc7157b04) fix: Update imports from langchain_core to langchain - [`eae4656`](https://github.com/langchain-ai/docs/commit/eae46563c271542b56c9c4f7b9d8b50edb5d3604) docs: Update BigQuery callback docs to match latest implementation - [`b327c06`](https://github.com/langchain-ai/docs/commit/b327c0659b313af8a78cec391f84bf4c02cfc4d7) fix: resolve PR review comments for BigQuery callback docs ### 📊 Changes **1 file changed** (+281 additions, -321 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/python/integrations/callbacks/google_bigquery.mdx` (+281 -321) </details> ### 📄 Description Depends on https://github.com/langchain-ai/langchain-google/pull/1538# ## Summary This PR updates the BigQuery callback handler documentation to include comprehensive LangGraph support features that were added in [langchain-ai/langchain-google#1538](https://github.com/langchain-ai/langchain-google/pull/1538). ### What's new in the documentation: - **Updated description** - Mentions LangGraph support alongside LangChain - **Key features section** - Highlights LangGraph detection, latency tracking, event filtering, graph context manager, and real-time dashboard - **LangGraph integration section** - Explains automatic node detection and new event types - **Event types table** - Documents NODE_STARTING, NODE_COMPLETED, GRAPH_START, GRAPH_END events - **Graph context manager** - Shows how to use `graph_context()` for execution boundaries - **Latency tracking** - Includes SQL query example for analytics - **Event filtering** - Demonstrates allowlist/denylist configuration - **Updated example code** - Uses LangGraph's `create_react_agent` with proper configuration - **Examples and resources section** - Links to example agent, Jupyter notebook, and FastAPI webapp ### LangGraph Event Types Table | Event Type | Description | |------------|-------------| | `NODE_STARTING` | Emitted when a LangGraph node begins execution | | `NODE_COMPLETED` | Emitted when a LangGraph node finishes successfully | | `NODE_ERROR` | Emitted when a LangGraph node fails | | `GRAPH_START` | Emitted at the start of graph execution (via context manager) | | `GRAPH_END` | Emitted at the end of graph execution (via context manager) | | `GRAPH_ERROR` | Emitted when graph execution fails (via context manager) | ## Test plan - [x] Verified example code runs successfully with LangGraph agent - [x] Confirmed events are logged to BigQuery with correct event types - [x] Tested `graph_context()` emits GRAPH_START/GRAPH_END events - [x] Validated SQL query examples return expected results ## Related PRs - [langchain-ai/langchain-google#1538](https://github.com/langchain-ai/langchain-google/pull/1538) - Implementation PR with callback handler changes 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:23:20 -05:00
yindo closed this issue 2026-02-17 17:23:20 -05:00
yindo changed title from [PR #2361] docs: Add LangGraph support to BigQuery callback handler documentation to [PR #2361] [MERGED] docs: Add LangGraph support to BigQuery callback handler documentation 2026-06-05 18:18:12 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2360