Track every request, measure every token, optimize every dollar.
Edgee provides complete visibility into your AI infrastructure with real-time metrics on costs, token usage, compression savings, performance, and errors.
Every request is tracked and exportable for analysis, budgeting, and optimization.
The Edgee Console provides a comprehensive view of your AI infrastructure with real-time metrics on costs, token usage, compression savings, performance, and errors.
The logs page provides a comprehensive view of your AI infrastructure with real-time metrics on costs, token usage, compression savings, performance, and errors.
It also allows you to debug individual requests and see the full request and response. See Debug Logs for details on enabling debug mode and inspecting request payloads.
Tags allow you to categorize and label requests for filtering and grouping in your analytics dashboard. Add tags to track requests by environment, feature, user, team, or any custom dimension.Using tags in native SDKs:
Using tags with OpenAI/Anthropic SDKs via headers:If you’re using the OpenAI or Anthropic SDKs with Edgee, add tags via the x-edgee-tags header (comma-separated):
OpenAI SDK (TypeScript)
Anthropic SDK (Python)
Copy
Ask AI
import OpenAI from "openai";const openai = new OpenAI({ baseURL: "https://api.edgee.ai/v1", apiKey: process.env.EDGEE_API_KEY, defaultHeaders: { "x-edgee-tags": "production,chat-feature,user-123,team-backend" }});
Environment taggingTag by environment: production, staging, development
Feature taggingTag by feature: chat, summarization, code-generation, rag-qa
User/tenant taggingTrack per-user or per-tenant usage: user-123, tenant-acme, customer-xyz
Team taggingOrganize by team: team-backend, team-frontend, team-data
Use tags consistently across your application to enable powerful filtering and cost attribution in your analytics dashboard. You can filter by multiple tags to drill down into specific segments (e.g., “production + chat-feature + team-backend”).