Troubleshooting Phoenix OTEL Integration for Flask Demo
Hi everyone. I'm trying to test Phoenix OTEL for a project demo. I'm currently using the following code:
from phoenix.otel import register
from app.config import Config
# Register OpenTelemetry for Flask
tracer_provider = register(
project_name="agent_commercial", # Default is 'default'
auto_instrument=True, # See 'Trace all calls made to a library' below
endpoint=Config.PHOENIX_COLLECTOR_ENDPOINT,
)
tracer = tracer_provider.get_tracer(__name__)However, I don't see the project appearing in the Phoenix UI. Is there something I might be missing? For context: It's a Flask app running locally, and I'm exposing it using ngrok for now.
