The Tools view shows every tool your agents have called, aggregated across all traces. Use it to find slow tools that bottleneck agent performance, high-failure tools that need fixing, and underused tools that may indicate agents are routing poorly.Documentation Index
Fetch the complete documentation index at: https://docs.lumiqtrace.com/llms.txt
Use this file to discover all available pages before exploring further.
Tool list
The tool list shows all tools called in the selected time range:| Column | Details |
|---|---|
| Tool name | The tool identifier from the SDK span |
| Calls | Total invocation count |
| Failure rate | Percentage of calls that returned an error |
| Avg latency | Mean duration per call |
| Agents | How many distinct agents called this tool |
| Last called | Timestamp of the most recent call |
Tool detail
Click any tool to open its detail page.Call history
A paginated list of recent calls with timestamp, agent, input arguments (ifstorePrompts is enabled), return value summary, latency, and outcome.
Latency distribution
A histogram of call durations. A bimodal distribution (two peaks) often indicates cache hit vs cache miss behavior or fast vs slow execution paths.Calling agents
A ranked list of agents that call this tool, with per-agent call counts and failure rates. If one agent has a much higher failure rate than others calling the same tool, the issue is likely in how that agent constructs the tool arguments.Tool span types
LumiqTrace records tool calls as spans of kindtool. Retrieval operations (vector search, document fetch) are recorded as spans of kind retriever. Both appear in the Tools view.
See Span kinds for the full list of span types and what each captures.
Registering tools in code
Tools appear automatically when your agent makes calls that the SDK recognizes as tool spans. For custom tools, wrap the tool function with a manual span:Next steps
- Traces — inspect individual tool calls in context
- Manual spans — instrument custom tools
- Span kinds — span type reference