Skip to main content
This page covers how to use Graphsignal to trace and monitor LangChain. Graphsignal enables full visibility into your application. It provides latency breakdowns by chains and tools, exceptions with full context, data monitoring, compute/GPU utilization, OpenAI cost analytics, and more.

Installation and setup

  • Install the Python library with pip install graphsignal
  • Create a free Graphsignal account
  • Get an API key and set it as an environment variable (GRAPHSIGNAL_API_KEY)

Tracing and monitoring

Graphsignal automatically instruments and starts tracing and monitoring chains. Traces and metrics are then available in your Graphsignal dashboards. Initialize the tracer by providing a deployment name:
To additionally trace any function or code, you can use a decorator or a context manager:
Optionally, enable profiling to record function-level statistics for each trace.
See the Quick Start guide for complete setup instructions.