You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right there is no way in Pythia to have it process only 'select' traces in Jaeger.
In a production Jaeger environment , there will be traces that are not LLM traces and Pythia should not try and process those.
We need a configuration in Pythia that allows Pythia to be selective about the Jaeger traces it needs to process.
Maybe we can modify the client sdk to add in an attribute that makes it easier for the backend pythia docker to select the LLM traces only.
The text was updated successfully, but these errors were encountered:
Custum service Name - LLM traces from wrapper (OpenLit)
If you want to change where and from were pythia writes and reads traces you can set the JAEGER_SERVICE_NAME in the .env file and also set the service_name for the Pythia traces to your value. The default value is default.
JAEGER_SERVICE_NAME=default
## Pythia Trace Collector with custom service nametraces=PythiaTraces(endpoint="http://localhost:4318", service_name="default")
traces.init
Right there is no way in Pythia to have it process only 'select' traces in Jaeger.
In a production Jaeger environment , there will be traces that are not LLM traces and Pythia should not try and process those.
We need a configuration in Pythia that allows Pythia to be selective about the Jaeger traces it needs to process.
Maybe we can modify the client sdk to add in an attribute that makes it easier for the backend pythia docker to select the LLM traces only.
The text was updated successfully, but these errors were encountered: