Doing an Arize POC here. Trying to create a new project with LangChain instrumentation. In my Langchain application I have configured arize_otel. And I can see captured traces from my app running from log_to_console=True . But no project is showing up in the arize console. Also no errors reported.
register_otel(
endpoints=Endpoints.ARIZE,
space_id="****************==",
api_key="**************",
project_name="trial",
log_to_console=True,
)
LangChainInstrumentor().instrument()