惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
CortexOps vs Langfuse: Open Source AI Observability Compared
Ashish Verma · 2026-06-20 · via DEV Community

Ashish Verma

Both CortexOps and Langfuse are open-source AI observability platforms. If you are evaluating them, the choice comes down to a few key differences: framework support, evaluation methodology, and whether you need a CI/CD deployment gate.


What They Are

Langfuse is an open-source LLM engineering platform focused on tracing, prompt management, and evaluation. It has a strong Python and TypeScript SDK, a hosted cloud option, and a popular self-hosted deployment. Over 6 million SDK downloads per month.

CortexOps is an open-source AI agent observability platform focused specifically on agentic systems. It supports 12 agent frameworks via a unified instrumentation layer, provides LLM-as-judge evaluation, and ships a CI/CD deployment gate CLI designed to block regressions before they reach production.


Feature Comparison

Feature Langfuse CortexOps
Open source ✓ MIT ✓ MIT
Self-hostable ✓ Yes ✓ Yes
Cloud hosted ✓ Yes ✓ Yes
Tracing ✓ LLM calls ✓ Agent execution (nodes, tools, state)
Agent frameworks Via SDK wrappers ✓ 12 native integrations
OpenTelemetry ✓ Partial ✓ OTLP native
LLM-as-judge ✓ Yes ✓ Yes
CI/CD eval gate CLI ✓ cortexops eval run
GitHub Actions ✓ cortexops-eval-action
PII redaction
Free tier ✓ 5,000 traces/month
Pro pricing Usage-based $49/month flat

The Key Difference: LLM Tracing vs Agent Tracing

Langfuse traces LLM calls — the individual model invocations that happen inside your application. This is valuable for prompt engineering and cost monitoring.

CortexOps traces agent execution — the full graph of nodes, tool calls, state transitions, and conditional branches that make up an agent run. This distinction matters when you are debugging:

With Langfuse you see:

LLM call #1 → input tokens: 342, output tokens: 89, latency: 1.2s
LLM call #2 → input tokens: 218, output tokens: 45, latency: 0.8s

With CortexOps you see:

agent_run (4.3s)
  └── classify_intent (1.2s) ✓
  └── check_refund_policy (0.9s) ✓
  └── process_refund (2.1s) ✗ FAILED
       └── tool: lookup_order (0.3s) ✓
       └── tool: issue_refund (1.8s) ✗ timeout

The agent-level trace tells you which node failed, which tool call timed out, and what the execution path was — without that, debugging a multi-node agent is guesswork.


The CI/CD Gate

This is where CortexOps has a clear advantage for production teams.

# Block the merge if task_completion drops below 90%
cortexops eval run \
  --dataset datasets/my_agent.yaml \
  --judge \
  --fail-on "task_completion < 0.90"

Combined with the GitHub Action:

- uses: ashishodu2023/cortexops-eval-action@v1
  with:
    dataset: datasets/my_agent.yaml
    fail-on: "task_completion < 0.90"
    cortexops-api-key: ${{ secrets.CORTEXOPS_API_KEY }}

Every pull request shows an eval report as a PR comment. The merge is blocked if quality drops. Langfuse has evaluation capabilities but does not ship a first-class CI/CD gate pattern.


When to Choose Langfuse

  • You are optimising LLM calls and prompts more than agent behaviour
  • You need TypeScript SDK support
  • You have an existing Langfuse deployment
  • You want the largest open-source community in this space

When to Choose CortexOps

  • You are building and operating LLM agents specifically
  • You need agent-level traces (nodes, tools, state) not just LLM call logs
  • You want a CI/CD gate that blocks regressions automatically
  • You use multiple agent frameworks

Try Both

Both are open source, both have free tiers. The fastest way to decide is to instrument one agent run with each and compare the trace data you get back.

pip install cortexops — 3 lines to your first agent trace.

Links:

  • CortexOps: getcortexops.com | github.com/ashishodu2023/cortexops
  • Langfuse: langfuse.com | github.com/langfuse/langfuse

Ashish Verma is a Senior AI Engineer at PayPal and co-founder of CortexOps.