How to log traces
To log traces, you must instrument your application either manually or automatically. To log to a remote instance of Phoenix, you must also configure the host and port where your traces will be sent.- Local Phoenix
- Remote Phoenix
When running running Phoenix locally on the default port of
6006, no additional configuration is necessary.How to turn off tracing
Tracing can be paused temporarily or disabled permanently. Pause tracing using context manager If there is a section of your code for which tracing is not desired, e.g. the document chunking process, it can be put inside thesuppress_tracing context manager as shown below.
.uninstrument() on the auto-instrumentors will remove tracing permanently. Below is the examples for LangChain, LlamaIndex and OpenAI, respectively.
For OpenAI, how do I get token counts when streaming?
To get token counts when streaming, installopenai>=1.26 and set stream_options={"include_usage": True} when calling create. Below is an example Python code snippet. For more info, see here.

