Hello! It seems we can't expose the phoenix logs remotely anymore? https://github.com/Arize-ai/phoenix/issues/4475
import time
import phoenix
def main():
session = phoenix.launch_app(host="0.0.0.0", use_temp_dir=False)
try:
while True:
time.sleep(10)
finally:
if session:
session.end()
if __name__ == "__main__":
main()This is the code i run ^ the output:
INFO:phoenix.config:馃搵 Ensuring phoenix working directory: /home/user/.phoenix
鉂楋笍 The launch_app `host` parameter is deprecated and will be removed in a future release. Use the `PHOENIX_HOST` environment variable instead.
馃實 To view the Phoenix app in your browser, visit http://localhost:6006/
馃捊 Your data is being persisted to sqlite:////home/user/.phoenix/phoenix.db
馃摉 For more information on how to use Phoenix, check out https://docs.arize.com/phoenix
I've tried to export the variable aswell export PHOENIX_HOST=0.0.0.0
but i still can't access the server remotely
what are you doing to access the server? let me try to repro
yay done!
we updated the firewall rules without re-enabling phoenix traffic, i thought the message would update to http://0.0.0.0:6006
I'm glad it worked out! Thanks for letting us know what happened too
