ConfigsApr 2, 2026·2 min read
OpenLIT — OpenTelemetry LLM Observability
Monitor LLM costs, latency, and quality with OpenTelemetry-native tracing. GPU monitoring and guardrails built in. 2.3K+ stars.
TO
TokRepo精选 · Community
Quick Use
Use it first, then decide how deep to go
This block should tell both the user and the agent what to copy, install, and apply first.
```bash
pip install openlit
```
```python
import openlit
# One line to instrument all LLM calls
openlit.init()
# Now use any LLM library as usual — OpenLIT traces automatically
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "What is RAG?"}]
)
# Traces, costs, latency, and token usage are captured automatically
```
Launch the dashboard:
```bash
docker run -p 3000:3000 ghcr.io/openlit/openlit
```
---
Intro
OpenLIT is an OpenTelemetry-native observability platform with 2,300+ GitHub stars purpose-built for LLM applications. With a single `openlit.init()` call, it auto-instruments 50+ LLM providers and frameworks, capturing traces, cost tracking, token usage, latency metrics, and quality evaluations. It includes GPU monitoring, prompt/response guardrails, and a built-in dashboard — all built on open standards (OpenTelemetry) so your data isn't locked into a proprietary vendor. Send traces to any OTLP-compatible backend (Grafana, Datadog, Jaeger).
Works with: OpenAI, Anthropic, Google, Ollama, LangChain, LlamaIndex, CrewAI, Haystack, and 50+ more. Best for teams running LLM apps in production who need cost and quality monitoring. Setup time: under 2 minutes.
---
🙏
Source & Thanks
> Created by [OpenLIT](https://github.com/openlit). Licensed under Apache-2.0.
>
> [openlit](https://github.com/openlit/openlit) — ⭐ 2,300+
Discussion
Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.
Related Assets
Agenta — Open-Source LLMOps Platform
Prompt playground, evaluation, and observability in one platform. Compare prompts, run evals, trace production calls. 4K+ stars.
TokRepo精选
Rerun — Visualize Multimodal AI Data in Real-Time
SDK for logging, storing, and visualizing 3D, images, time series, and text in real-time. Built for robotics and AI. 10K+ stars.
TokRepo精选
Unstructured — Document ETL for LLM Pipelines
Extract clean data from PDFs, DOCX, HTML, images, and emails for RAG and LLM ingestion. 14K+ GitHub stars.
TokRepo精选