Tessary
Tessary traces
A trace is one unit in Tessary: the stored record of one agent turn. Traces live in Tessary's substrate, the agent-native store every other part of the product reads from. The substrate has three fixed levels: the session, the trace (one turn), and the span (one step, an LLM call or a tool call). The levels match how agents actually run: a user session holds turns, and each turn holds the steps the agent took to produce its answer.
Each level is keyed on your own ids, and a span carries the actual content of its step: the payloads, tool calls, retrieved documents, and media. Spans can also carry tessary.call_site.id, a plain span attribute that needs no SDK. It's what findings, baselines, and regressions bind to.
To send traces, point the OpenTelemetry exporter your agent already uses at Tessary over OTLP, or use the SDK push source if your stack doesn't have one. PII redaction runs on the write path, before anything is stored. Classifiers, cases, and root cause analysis all read this same stored record, so every conclusion cites evidence you can open.
6 questions