
What Signals can help you answer
If you can describe it to a colleague, you can write a Signal for it.- Business outcomes: “agent completed checkout,” “agent answered the question correctly.”
- Logical failures: “agent loops on the same tool without progress,” “agent gave up after one retry.”
- Behavioral categorization: user intent, topic, any categorical field you want on the trace.
- User friction: “user asked for the same information multiple times”, “user gave up after multiple retries”.
- Cost and waste: “long context, short answer,” “tool called with malformed arguments and retried.”
Anatomy of a Signal run
A Signal has three parts:- Prompt: plain-language instructions that describe what the Signal should detect or extract from an agent trace.
- Structured output schema: a JSON schema the extracted payload must conform to.
- Triggers: trace conditions that must be met for the Signal to run.
- A signal event linked to the trace, carrying the structured payload that matches the user-defined schema.
- No event, which means the Signal wasn’t found in that trace.
Signal events are accessible via the
signal_events table and can be easily queried using the SQL Editor. All signal events are linked to the traces that produced them. You can use event payloads to query corresponding traces. In a sense, you can think of signal event payload being an additional column of traces table.Run a Signal on new traces or historical traces
Each Signal can run in two modes, configured independently:- Triggers run the Signal on new traces as they arrive. Use Triggers for anything you want to watch in real time (live error rates, live success counts, anything that feeds Alerts). Trigger filters are AND-combined and are evaluated against accumulated trace state, so Signals fire once per matching trace.
- Jobs run the Signal across a historical slice of traces. Use Jobs to backfill a new Signal, re-run a changed prompt over last week’s traffic, or investigate a window of traces that match a filter.
Next steps
Quickstart
Write your first Signal, trigger it on new traces arriving in real-time, and see events.
Clusters
Learn how Laminar groups similar signal events so you can see patterns.
Alerts
Fire Slack or email notifications on new signal events or clusters.
