Skip to content

Tracing Reference

Structured reference for fullsend's distributed tracing system: environment variables, span hierarchy, attributes, and operational behavior. For step-by-step setup, see How To Emit Traces. For implementation details, see the Tracing Development Guide.

Telemetry levels

LevelWhat it producesConfiguration required
1run-telemetry.jsonl file in the run output directoryNone
2OTLP/HTTP export to a remote backend (metadata only)OTEL_EXPORTER_OTLP_*ENDPOINT
3Content capture (prompts, completions, tool I/O) in spansOTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=true (planned, not yet implemented)

All levels produce metadata (timing, token counts, tool names, errors). Level 3 adds prompt/completion content to spans.

Environment variables

Endpoint configuration

VariablePurposeNotes
OTEL_EXPORTER_OTLP_TRACES_ENDPOINTSignal-specific endpoint URLTakes precedence; used as-is, no /v1/traces appended
OTEL_EXPORTER_OTLP_ENDPOINTBase endpoint URLSDK appends /v1/traces automatically

Authentication

VariablePurposeNotes
OTEL_EXPORTER_OTLP_TRACES_HEADERSSignal-specific headersTakes precedence; key=value pairs separated by commas; values are URL-decoded
OTEL_EXPORTER_OTLP_HEADERSBase headersSame format as above

Private CA

VariablePurposeNotes
OTEL_EXPORTER_OTLP_CERTIFICATEPEM file path for TLS root certificatesPoints at a CA bundle for verifying the OTLP backend's certificate; no skip-verify option exists. In managed workflows the PEM file must be committed into the repository checkout (e.g. .fullsend/otel-ca.pem) because the runner has no other persistent filesystem; bring-your-own-workflow runs can use any local path

Resource attributes

VariablePurposeNotes
OTEL_RESOURCE_ATTRIBUTESStatic k=v,k=v trace tagsMerged into the OTel resource; ${{ github.* }} expressions only evaluate in workflow YAML, not in Actions variables

Kill switches

VariableValueEffect
OTEL_SDK_DISABLEDtrue (case-insensitive)Disables all telemetry output: OTLP export and the local file

To disable only OTLP export without affecting the local file, unset the endpoint variables:

bash
unset OTEL_EXPORTER_OTLP_ENDPOINT
unset OTEL_EXPORTER_OTLP_TRACES_ENDPOINT

Trace propagation

VariablePurposeNotes
TRACEPARENTW3C Trace Context parentWhen present, the root span becomes SpanKindConsumer; when the sampled flag is unset (-00), OTLP export is suppressed but the local file is still written
TRACESTATEW3C Trace Context statePropagated alongside TRACEPARENT

Content capture (planned)

VariableValueEffect
OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENTtrueIncludes prompts, completions, tool arguments, tool results, and reasoning text in spans

Content capture follows the OTel GenAI semantic conventions. When enabled, spans may contain proprietary source code, PII, or credentials visible in tool outputs.

Span hierarchy

A run produces this span tree. Span names match the name field in run-telemetry.jsonl; exported spans and the local file are two views of the same trace with identical span IDs.

run (root; Consumer when dispatched with TRACEPARENT, else Internal)
├── sandbox_create (gen_ai.operation.name=create_agent)
└── agent           (one per iteration; gen_ai.operation.name=invoke_agent)

SpanKind

SpanKindCondition
runConsumerValid inbound TRACEPARENT (dispatched by an instrumented system)
runInternalNo inbound TRACEPARENT (local/manual invocation)
sandbox_createInternalAlways
agentInternalAlways

Span attributes

GenAI semantic convention attributes

These follow the OTel GenAI semantic conventions and are recognized by LLM-aware backends for GenAI dashboards.

AttributeExamplePresent on
gen_ai.operation.nameinvoke_agentrun, agent (create_agent on sandbox_create)
gen_ai.agent.nametriagerun, agent
gen_ai.system / gen_ai.provider.nameanthropicagent (model vendor; system deprecated in OTel GenAI semconv v1.37 — EM-001 accepts either)
gen_ai.request.modelclaude-opus-4-6agent (resolved model)
gen_ai.usage.input_tokens / output_tokens / cache_*_input_tokens109938agent

Fullsend-specific attributes

AttributePresent onDescription
fullsend.work_item_idrunWork item identity (e.g. owner/repo#123); primary cross-run correlation key
fullsend.agentrunAgent name
fullsend.cost_usdrun (aggregated), agentCost in USD, rounded to cents
fullsend.tool_callsrun (aggregated), agentNumber of tool invocations
fullsend.num_turnsrunTotal conversation turns across all iterations
fullsend.iterationsrunNumber of agent iterations (validation loop included)
fullsend.security_trace_idrunSecurity scanner trace correlation ID
fullsend.prescript.skippedrunWhether the pre-script signaled a skip
fullsend.prescript.skip_reasonrunHuman-readable skip reason from the pre-script
fullsend.transcript_erroragentPresent (true) when the agent exited 0 but its transcript reported an error — the span's status is Error while exit_code keeps the raw process exit

Common attributes

AttributePresent onDescription
exit_coderun, agentProcess exit code
iterationagent1-based iteration index

Resource attributes

Set on every span via the OTel resource:

AttributeValue
service.namefullsend
service.versionCLI version string

Additional resource attributes from OTEL_RESOURCE_ATTRIBUTES are merged in.

Output file format

run-telemetry.jsonl contains one JSON object per line. Each object is a complete OTLP TracesData message with hex-encoded trace/span IDs (per the OTLP JSON spec, not base64).

Non-finite float values (NaN, Infinity) are encoded as proto3 JSON strings ("NaN", "Infinity", "-Infinity").

The file is written synchronously per span. Spans are flushed to disk as they complete; the file is the forensic record for crashed runs.

Cross-run trace correlation

Multi-agent pipelines (triage, code, review) propagate trace context via the TRACEPARENT environment variable (W3C Trace Context).

When a workflow dispatches a child run:

yaml
env:
  TRACEPARENT: ${{ steps.parent.outputs.traceparent }}

The child run's root span becomes part of the parent trace.

For separate workflow runs on the same work item (e.g. triage, code, review as independent GHA workflows), TRACEPARENT must be propagated manually. GitHub webhooks do not support custom trace headers.

Within a single work item, fullsend.work_item_id on the root run span is the correlation key for filtering related traces in a backend.

Operational behavior

  • Export timing: spans are exported live via the batch processor. On shutdown, the provider flushes remaining spans within a 5-second budget. A dead endpoint does not block the run.
  • Retry: the exporter retries on transient failures (HTTP 503, etc.) with an initial interval of 250 ms and a max interval of 2 s. The 5-second context deadline passed to tp.Shutdown bounds both retries and in-flight requests, so a persistently failing or hanging endpoint does not extend shutdown.
  • Crashed runs: completed spans already flushed mid-run reach the backend; spans in the batch buffer are lost. The local file remains.
  • Sampling: when TRACEPARENT has the sampled flag unset (-00), OTLP export is suppressed. The local file is still written.
  • Endpoint validation: the CLI validates the endpoint before creating the OTLP exporter. An endpoint is invalid if it cannot be parsed as a URL, has no scheme, uses a scheme other than http or https, or has no host (e.g. localhost:4318 instead of http://localhost:4318). When invalid, the CLI prints a warning to stderr and skips OTLP export; the local file exporter is unaffected. A valid signal-specific endpoint is not blocked by an invalid generic endpoint.
  • Private CAs: OTEL_EXPORTER_OTLP_CERTIFICATE points at a PEM bundle. No skip-verify option exists.

GHA workflow configuration

Managed workflows

All agent stages (triage, code, review, fix, retro, prioritize, harness) forward OTEL configuration. To enable export, set on the org (or repo) that hosts the fullsend caller workflows:

NameTypeRequiredPurpose
OTEL_EXPORTER_OTLP_TRACES_ENDPOINTVariableYesBackend's full traces URL (e.g. https://mlflow.example.com/v1/traces). Alternatively, set OTEL_EXPORTER_OTLP_ENDPOINT (the base URL without a signal path); managed workflows forward both variants.
OTEL_EXPORTER_OTLP_TRACES_HEADERSSecretYesComplete header string, auth and routing included (e.g. Authorization=Bearer%20<token>,x-mlflow-experiment-id=42).
OTEL_EXPORTER_OTLP_HEADERSSecretNoGeneric (non-signal-specific) OTLP headers. Same format as the traces variant. Useful when a single header set covers all signals.
OTEL_EXPORTER_OTLP_CERTIFICATEVariableNoPath to a PEM CA bundle for backends behind a private CA. Commit the bundle into the config repo (e.g. .fullsend/otel-ca.pem) and set the variable to that checkout-relative path.
OTEL_RESOURCE_ATTRIBUTESVariableNoStatic k=v,k=v trace tags. The value is used verbatim; ${{ github.* }} expressions evaluate only in workflow YAML, not in variables.
OTEL_SDK_DISABLEDVariableNoSet to true to disable all telemetry, including the local file exporter.

Installations scaffolded before OTEL support was added must also forward the secrets (add OTEL_EXPORTER_OTLP_TRACES_HEADERS and OTEL_EXPORTER_OTLP_HEADERS under secrets:) until the scaffold is re-synced: in the .fullsend repo's stage workflows (per-org), or in the fullsend shim workflow's dispatch job (per-repo).

Bring your own workflow

Add the environment variables to any job that runs fullsend run:

yaml
env:
  OTEL_EXPORTER_OTLP_ENDPOINT: "${{ vars.OTEL_EXPORTER_OTLP_ENDPOINT }}"
  OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "${{ vars.OTEL_EXPORTER_OTLP_TRACES_ENDPOINT }}"
  OTEL_EXPORTER_OTLP_TRACES_HEADERS: "${{ secrets.OTEL_EXPORTER_OTLP_TRACES_HEADERS }}"
  OTEL_EXPORTER_OTLP_HEADERS: "${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}"
  OTEL_RESOURCE_ATTRIBUTES: "${{ vars.OTEL_RESOURCE_ATTRIBUTES }}"
  OTEL_SDK_DISABLED: "${{ vars.OTEL_SDK_DISABLED }}"
  OTEL_EXPORTER_OTLP_CERTIFICATE: "${{ vars.OTEL_EXPORTER_OTLP_CERTIFICATE }}"

Any variable and secret names work here; the values reach the exporter as-is. Consult your backend's documentation for the endpoint URL and authentication mechanism.

Eval measurements

After each managed agent run, fullsend eval-measure scores run-telemetry.jsonl in the same job (fail-open). Scores land in eval-measurements.jsonl beside telemetry when at least one new score is produced (tool-agnostic artifact). Portable remote export will reuse the same OTEL_EXPORTER_OTLP_* configuration as agent traces when implemented.

Today's scorers (starting with EM-001) read the Level 1/2 metadata contract of run-telemetry.jsonl — span tree and attributes, not prompt or completion bodies. That foundation is intentional: fitness scores must trust the trace before quality scores can. Planned: content-aware scorers that consume Level 3 prompt/completion capture once Level 3 is implemented — that is where the real quality signal lives. See Eval Measurements and ADR 0087.

See also

Content