Hi Mikyo, I have deployed phoenix inside a container how can i access it outside that container.
Could you clarify what are you trying to do? Are you looking to access the phoenix dashboard in the browser? Or export traces from your application to it? In any case, did you follow the guide on https://docs.arize.com/phoenix/deployment/deploying-phoenix? This has all the info to properly setup phoenix in a container and export traces to it. If you are running locally, you can go to localhost:6006 in your browser (provided you forward port 6006 in your container)
I want to see the traces. How can I ?
Can you please let me know if you are doing a local docker deployment or using a service?
using kubernetes
Assuming you were able to get the deployment running according to guidelines on Phoenix deployment page, you can just go to the URL in your browser. The URL depends on how you configured kubernetes and what ports you used. The default address for phoenix dashboard is http://localhost:6006/
Thank you so much for helping Nabeegh! 馃ぉ Nabeegh is exactly right - phoenix's UI is exposed on the PHOENIX_PORT you configured, and can also expose GRPC for sending traces to the pod as well (though I think you should probably leave that one to be intra-cluster DNS). To access the pod you will have to use k8s itself. You can port forward to the port 6006. https://kubernetes.io/docs/tasks/access-application-cluster/port-forward-access-application-cluster/ To permanently make it accessible for others you will have to setup ingress (https://kubernetes.io/docs/concepts/services-networking/ingress/) Hope that helps.
Thanks Nabeegh A. and Mikyo
