get_funnel_slow_traces
Identify slowest traces for a funnel step transition, returning trace IDs to investigate drop-offs or high latency in SigNoz.
Instructions
Fetch the slowest traces for one step transition of a funnel.
Use this after get_funnel_analytics shows a drop-off or a high latency
between two steps -- it gives you concrete trace ids to open in SigNoz.
Args:
funnel_id: The funnel's UUID.
funnel_name: Its name, as an alternative to the id.
time_range: Relative window, e.g. "24h".
step_start: 1-based index of the transition's first step.
step_end: 1-based index of its second step. Must differ from
step_start.
Returns:
Up to 5 rows of {trace_id, duration_ms, span_count}, plus
error_traces sampled from the same transition.
Note:
At most 5 rows. SigNoz hardcodes ORDER BY duration_ms DESC LIMIT 5; there is no way to page or raise it. The query is also pairwise --
it measures step_start to step_end only, not the whole funnel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| step_end | No | ||
| funnel_id | No | ||
| step_start | No | ||
| time_range | No | 24h | |
| funnel_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||