EveryDev.ai
Subscribe
Home
Tools

2,885+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents1815
  • Coding1295
  • Infrastructure600
  • Marketing467
  • Projects433
  • Research403
  • Analytics351
  • Design338
  • Security243
  • MCP242
  • Testing238
  • Data230
  • Integration178
  • Prompts160
  • Learning159
  • Communication154
  • Extensions150
  • Voice130
  • Commerce125
  • DevOps108
  • Web80
  • Finance21
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Foglamp
    Foglamp icon

    Foglamp

    Observability Platforms

    Open-source observability layer for AI agents built on the Vercel AI SDK — tracks cost, latency, token usage, distributed traces, and evals with two lines of code.

    Visit Website

    At a Glance

    Pricing
    Open Source
    Free tier available

    Forever free tier for getting started with AI agent observability.

    Pro: $49/mo
    Enterprise: Custom/contact

    Engagement

    Available On

    Web
    API
    CLI
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Observability PlatformsAI InfrastructureLLM Evaluations

    Alternatives

    Atla AIArize AIOpenLIT
    Developer
    Foglamp LabsFoglamp Labs builds open-source observability tooling for AI…

    Listed Jun 2026

    About Foglamp

    Foglamp is an open-source observability platform built specifically for AI agents running on the Vercel AI SDK. Two lines of code and an API key instrument every generateText and streamText call, surfacing costs, latency, token usage, distributed traces, and eval scores in a unified dashboard. The platform is licensed under Apache 2.0 for the core platform and MIT for the SDK, and is fully self-hostable via Docker Compose.

    What It Is

    Foglamp fills the gap the Vercel AI SDK leaves open: it gives developers a first-class answer to what an agent cost, how slow it was, and what it actually sent the model. It sits between the AI SDK and the model provider, capturing telemetry at ingest and storing spans in ClickHouse with org/project/key state in Postgres. The hosted cloud version and a self-hosted path using plain Postgres + ClickHouse + Redis are both supported.

    Architecture and Data Model

    Foglamp's architecture separates three independently scalable deployables:

    • Ingest (apps/ingest) — a Hono API that handles API-key auth, rate limiting, cost computation at ingest time, and bulk writes to ClickHouse.
    • Server (apps/server) — a Hono + tRPC dashboard API with better-auth and an alert evaluator cron.
    • Web (apps/web) — a Next.js dashboard.

    Spans are stored in ClickHouse; org, project, key, pricing, and alert state live in Postgres. Costs are computed once at ingest from OpenRouter pricing data (cached with a 24-hour refresh), per token dimension — prompt, completion, cached, reasoning, images, web search. Unknown models show — rather than a misleading $0.

    Core Observability Capabilities

    • Cost intelligence — per-model, per-agent, per-customer spend with custom price overrides per project.
    • Latency and TTFT — p50/p95/p99 per model and agent; time-to-first-token read from the SDK's own step timing.
    • Distributed traces — waterfall view of every run with the exact prompt and response on every span; tool calls and embedding steps are first-class spans.
    • Evals — score production traffic with code checks and LLM judges.
    • Alerts — threshold rules on cost, latency, error rate, TTFT, tokens, or request count, evaluated every minute with email and Slack notifications.
    • Named agents, workflows, and sessions — agentName, workflowName, workflowRunId, and sessionId are indexed first-class fields; free-form metadata handles everything else.

    Self-Hosting Path

    The repository ships a docker-compose.yml that starts Postgres, ClickHouse, Redis, the ingest API, the dashboard API, and the web app. A one-shot migrate service runs Postgres migrations, ClickHouse DDL, span retention TTL, and seeds an admin user, org, project, and API key. Email (magic-link and alert notifications) is optional via Resend; Google OAuth is also optional. The SDK becomes a silent no-op when FOGLAMP_API_KEY is unset, so it never throws or adds latency in environments where telemetry is disabled.

    SDK Scope and Compatibility

    The published foglamp npm package targets TypeScript with Vercel AI SDK v4 through v7. AI SDK v7 uses the native telemetry-integrations collector; v4/v5/v6 use the foglamp/wrap entry point. The SDK has zero runtime workspace dependencies and treats ai as a peer dependency. OTLP /v1/traces ingest is listed in the repository as a planned follow-up. The monorepo is built on Bun workspaces and Turborepo, with packages for the SDK, wire contracts (Zod), cost computation, ClickHouse client, Drizzle schema, tRPC routers, auth, and a shadcn UI component library.

    Foglamp - 1

    Community Discussions

    Be the first to start a conversation about Foglamp

    Share your experience with Foglamp, ask questions, or help others learn from your insights.

    Pricing

    FREE

    Free

    Forever free tier for getting started with AI agent observability.

    • 10,000 spans per month
    • 3 days data retention
    • 1 project
    • 1 alert
    • 5 evals

    Pro

    Popular

    For teams shipping AI agents in production.

    $49
    per month
    • 1,000,000 spans per month
    • 14 days data retention
    • 5 projects
    • 10 alerts
    • 20 evals
    • Everything in Free
    • Foggy AI assistant
    • Email & Slack alerting
    • Priority support

    Enterprise

    Custom plan for large teams with advanced security and support needs.

    Custom
    contact sales
    • Custom spans per month
    • 90+ days data retention
    • Custom projects
    • Custom alerts
    • Custom evals
    • Everything in Pro
    • SSO / SAML
    • Audit logs
    • Dedicated support & SLA
    View official pricing

    Capabilities

    Key Features

    • Cost tracking per model, agent, and customer
    • Distributed trace waterfall with prompt and response per span
    • p50/p95/p99 latency and time-to-first-token metrics
    • Production evals with code checks and LLM judges
    • Threshold alerts on cost, latency, error rate, TTFT, tokens, and request count
    • Email and Slack alert notifications
    • Named agents, workflows, and sessions as first-class indexed fields
    • Free-form metadata support
    • Self-hostable via Docker Compose with ClickHouse and Postgres
    • Two-line SDK instrumentation for Vercel AI SDK v4–v7
    • Cost computed at ingest from OpenRouter pricing per token dimension
    • Per-project custom price overrides
    • Silent no-op SDK when API key is unset
    • Serverless runtime support (Vercel, AWS Lambda, Cloudflare Workers)

    Integrations

    Vercel AI SDK
    OpenAI (GPT models)
    Anthropic (Claude models)
    Google (Gemini models)
    OpenRouter
    ClickHouse
    PostgreSQL
    Redis
    Resend (email)
    Google OAuth
    Slack (alerts)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Foglamp and help others make informed decisions.

    Developer

    Foglamp Labs

    Foglamp Labs builds open-source observability tooling for AI agents. The team ships Foglamp, a platform that instruments Vercel AI SDK calls to surface cost, latency, traces, and evals in a unified dashboard. The platform is fully self-hostable under Apache 2.0 and also available as a hosted service. Foglamp Labs focuses on giving developers visibility into production AI agent behavior before users encounter problems.

    Read more about Foglamp Labs
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Atla AI icon

    Atla AI

    Atla AI is an AI evaluation platform that helps teams assess and improve the quality of large language model outputs.

    Arize AI icon

    Arize AI

    Arize AI is an enterprise AI and agent engineering platform for development, observability, and evaluation of LLM applications, AI agents, and ML models in production.

    OpenLIT icon

    OpenLIT

    Open-source AI engineering platform for OpenTelemetry-native LLM observability, GPU monitoring, evaluations, prompt management, and guardrails across 50+ integrations.

    Browse all tools

    Related Topics

    Observability Platforms

    Comprehensive platforms that combine metrics, logs, and traces with AI-powered analytics to provide deep insights into complex distributed systems and application behavior.

    98 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    288 tools

    LLM Evaluations

    Platforms and frameworks for evaluating, testing, and benchmarking LLM systems and AI applications. These tools provide evaluators and evaluation models to score AI outputs, measure hallucinations, assess RAG quality, detect failures, and optimize model performance. Features include automated testing with LLM-as-a-judge metrics, component-level evaluation with tracing, regression testing in CI/CD pipelines, custom evaluator creation, dataset curation, and real-time monitoring of production systems. Teams use these solutions to validate prompt effectiveness, compare models side-by-side, ensure answer correctness and relevance, identify bias and toxicity, prevent PII leakage, and continuously improve AI product quality through experiments, benchmarks, and performance analytics.

    95 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions