Use this checklist when traces do not appear in Catalyst or when spans are missing expected attributes.Documentation Index
Fetch the complete documentation index at: https://docs.inference.net/llms.txt
Use this file to discover all available pages before exploring further.
No Spans Appear
Confirm Export Configuration
Enable Debug Logging
Initialize Before Clients
Callsetup() before constructing provider or framework clients. Many
integrations patch shared prototypes or callback configuration paths.
TypeScript
Spans Disappear In Short-Lived Processes
Batch exporters flush on an interval. CLIs, scripts, workers, and tests should callshutdown() before the process exits.
Framework Spans Are Missing
| Integration | Check |
|---|---|
| LangChain / LangGraph JS | Pass @langchain/core/callbacks/manager as a namespace to setup() |
| LangSmith | Set LANGSMITH_TRACING=true and use otel or hybrid mode |
| Claude Agent SDK TS | Use wrapClaudeAgentSdkQuery(query, tracing) |
| OpenAI Agents | Pair openaiAgents with openai in setup() |