opentelemetry-native span ingestion and storage
Accepts OpenTelemetry Protocol (OTLP) traces via gRPC server on port 4317, parses span hierarchies with parent-child relationships, and persists them to PostgreSQL or SQLite with automatic schema migrations. Implements the full OTLP specification for trace collection without requiring vendor lock-in or custom instrumentation adapters.
Unique: Native OTLP gRPC server with full span hierarchy preservation and dual-database support (PostgreSQL + SQLite) in a single open-source package, eliminating need for separate trace collectors like Jaeger or Tempo
vs alternatives: Simpler than Jaeger for LLM-specific use cases (no complex configuration) and cheaper than Datadog/New Relic (self-hosted, no per-span pricing)
span-level trace querying and filtering via graphql
Exposes a Strawberry GraphQL API (api/schema.py) that enables complex queries over ingested spans with filters on span name, status, duration, attributes, and parent-child relationships. Supports cursor-based pagination and aggregations (count, latency percentiles) without requiring SQL knowledge, allowing developers to programmatically extract trace subsets for analysis.
Unique: Strawberry GraphQL schema specifically designed for LLM trace patterns (model names, token counts, retrieval metadata) rather than generic span attributes, with built-in support for RAG-specific filters like 'retrieval_source' and 'embedding_model'
vs alternatives: More intuitive than raw SQL queries for non-database engineers, and more flexible than Jaeger's UI-only filtering for programmatic access
span attribute annotation and feedback collection
Provides APIs and UI for adding human feedback and annotations to spans after they are ingested (e.g., marking a retrieval result as 'relevant' or 'irrelevant', or adding a human score to an LLM response). Feedback is stored separately from spans and linked via span ID, enabling human-in-the-loop evaluation and ground-truth dataset creation from production traces.
Unique: Feedback is collected directly on Phoenix spans without requiring separate annotation tools or data export, enabling seamless integration of human feedback into trace analysis and dataset creation workflows
vs alternatives: More integrated than external annotation tools (Label Studio, Prodigy) because feedback is stored in the same system as traces; simpler than building custom feedback UIs because Phoenix provides built-in annotation interface
batch span export and dataset creation from traces
Provides APIs to export spans matching query criteria (e.g., all spans from the last 7 days, or spans with error status) into structured datasets (CSV, JSON, Parquet) for external analysis. Supports filtering, sampling, and transformation (e.g., extracting input/output pairs for fine-tuning datasets) during export.
Unique: Export directly from Phoenix traces without intermediate data warehouse, and supports transformation rules (e.g., extracting input/output pairs) for common fine-tuning dataset formats
vs alternatives: More integrated than manual trace export because filtering and transformation happen in Phoenix; more flexible than fixed-schema exports because users can define custom transformations
multi-user authentication and role-based access control
Implements authentication and authorization (Authentication & Authorization section in DeepWiki) supporting multiple user types (admin, viewer, editor) with fine-grained permissions on datasets, experiments, and traces. Integrates with OAuth2 or API key authentication for programmatic access, and supports RBAC policies for multi-tenant deployments.
Unique: RBAC integrated with Phoenix's GraphQL and REST APIs, allowing fine-grained control over which users can query, modify, or export traces and datasets without separate authorization layer
vs alternatives: More integrated than external authorization services (Auth0, Okta) because permissions are enforced at the API level; simpler than building custom RBAC because Phoenix provides built-in role definitions
kubernetes-native deployment with helm charts and kustomize
Provides production-ready Kubernetes manifests (kustomize/ directory) and Helm charts for deploying Phoenix server, PostgreSQL, and supporting services as a scalable cluster. Includes configuration for resource limits, health checks, persistent volumes, and horizontal pod autoscaling based on trace ingestion rate.
Unique: Kubernetes manifests are version-controlled in the Phoenix repo and tested in CI/CD, ensuring deployment configurations stay in sync with server code; includes Kustomize overlays for dev/staging/prod environments
vs alternatives: More integrated than generic Kubernetes deployments because manifests are Phoenix-specific and tested; simpler than building custom Helm charts because charts are provided and maintained by Arize
automatic llm span instrumentation via python opentelemetry wrapper
The arize-phoenix-otel package provides auto-instrumentation decorators and context managers that wrap LLM calls (OpenAI, Anthropic, LlamaIndex, LangChain) and automatically emit spans with model name, token counts, latency, and error status. Uses Python's contextvars for automatic parent-child span linking without manual trace ID propagation.
Unique: Specialized auto-instrumentation for LLM APIs (not generic HTTP tracing) that extracts model names and token counts from API responses and embeds them as span attributes, enabling cost and performance analysis without custom parsing
vs alternatives: Simpler than manual OpenTelemetry instrumentation and more LLM-aware than generic Python auto-instrumentation libraries like opentelemetry-instrumentation-requests
evaluation framework with llm-as-judge and custom metrics
The arize-phoenix-evals package provides a pluggable evaluation system that runs LLM-based judges (using OpenAI, Anthropic, or local models) to score span outputs against criteria (relevance, hallucination, toxicity). Supports custom Python evaluation functions, batch evaluation over datasets, and integration with experiment tracking for A/B testing LLM prompts or models.
Unique: Integrated LLM-as-judge evaluation tightly coupled with trace data (no separate evaluation dataset needed) and experiment tracking, allowing direct comparison of evaluation scores across different LLM models or prompts tested in production
vs alternatives: More integrated than standalone evaluation frameworks (Ragas, DeepEval) because evaluations run directly on Phoenix traces without data export; more flexible than rule-based metrics because judges can reason about semantic quality
+6 more capabilities