Another question, if I may 馃檪 I'm running Phoenix on a GCP VM with a separate Postgres instance backing it up. I'm running a benchmark of ~300 queries against my system, each such query runs prompts that total in the hundreds of thousands of tokens (I had a "session" with more than 7,000 spans).
I registered Phoenix using register(project_name="mabool", batch=True, protocol="http/protobuf", auto_instrument=True)
I'm using HTTP because gRPC seems to choke at some point (something with "resource exhausted" from otel, couldn't find something about it online).
My question is: using the above config, is it normal to see traces pop up in the UI hours after a query ran? I'm asking because I thought some queries completely failed, so I killed my app, and hours later these sessions appeared in the UI. The "Stream" option is turned on, by the way.
Thanks again for the help and for Phoenix, the self-hosting is amazing DX-wise 馃ぉ 馃檹
EDIT: I forgot to mention: my system runs on the same GCP VM that Phoenix runs on, I don't know how much it matters, i.e., how resource-intensive Phoenix is (my system is mainly IO-bound with all the network calls, not much CPU/RAM usage).