You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Im using a self-hosted phoenix version and playing around with some API requests. My traces are not beeing registered in localhost:6006.
To Reproduce
Steps to reproduce the behavior:
Create a docker-compose:
services:
phoenix:
image: arizephoenix/phoenix:latest # Ensure the Phoenix version is 4.0.0 or laterdepends_on:
- dbports:
- "6006:6006"# Phoenix UI and OTLP HTTP collector
- "4317:4317"# OTLP gRPC collector
- "9090:9090"# Optional: Prometheus metrics port, if enabledenvironment:
- PHOENIX_SQL_DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres # PostgreSQL connection URL
- PHOENIX_WORKING_DIR=/mnt/data # Optional: Specify working directory for Phoenixvolumes:
- phoenix_data:/mnt/data # Persistent volume for Phoenix datadb:
image: postgres:14 # PostgreSQL version >= 14restart: alwaysenvironment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgresports:
- "5432:5432"# PostgreSQL portvolumes:
- postgres_data:/var/lib/postgresql/data # Persistent volume for PostgreSQL databasevolumes:
phoenix_data:
driver: local # Persistent volume for Phoenix datapostgres_data:
driver: local # Persistent volume for PostgreSQL data
Describe the bug
Im using a self-hosted phoenix version and playing around with some API requests. My traces are not beeing registered in localhost:6006.
To Reproduce
Steps to reproduce the behavior:
Screenshots
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: