
What a cluster is
A cluster is a group of signal events whose summaries are semantically similar. Laminar generates a short summary of each event’s payload, embeds it, and groups events hierarchically. You get a handful of broad clusters at the top that break down into more specific sub-clusters as you drill in. Read top-down when you want the shape of the problem (“most failures are tool loops”). Read bottom-up when you want the specific example (“this one loop is the config-validation tool calling itself twelve times”).Clustering is performed automatically. No additional configuration is needed.
Where to find them
On any Signal detail page, open the Events tab. The right-hand panel lists clusters for the current filter and time window. Clicking a cluster filters the events list to that cluster’s members. Clicking a sub-cluster narrows further. From any event you can jump to the trace that produced it.When clusters earn their keep
Clusters pay off when you have hundreds or thousands of events and an open-ended question:- Triage: “Of the 4,000 traces flagged by
agent_failurethis week, which handful of failure modes account for most of them?” - Regression detection: a cluster that was empty yesterday and full today is a new failure mode.
- Prompt tuning: if a cluster contains events you don’t consider matches, your prompt is too broad. If expected events split across unrelated clusters, your payload schema isn’t capturing the discriminating fields.
How clusters are built
- Every new signal event is sent to Laminar’s clustering service with a short, human-readable summary of its payload.
- The service embeds the summary and places the event near semantically similar neighbors.
- Clusters are re-computed on a rolling basis, so new events settle into existing groups and new groups emerge when patterns shift.
Next steps
Alerts
Fire Slack or email notifications on new signal events or clusters.
SQL Editor
Query raw events from the
signal_events table.