FruxonDocs
AgentsExecution Records

Gets the raw OTLP spans archived for this execution.

Returns each span as we received it from the customer's tracer, no platform mapper applied. Used by the trace sidebar's "raw OTel" view and by external tooling driven off the source-of-truth (mapper validation, attribute audits). Empty `spans` array means the execution didn't go through OTLP ingest (native agent, or external run that emitted no spans).

GET
/v1/tenants/{tenant}/agents/{agent}/executionRecords/{executionRecord}:rawOtlpSpans
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

agent*string

The unique identifier of the agent.

executionRecord*string

The execution record identifier.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/executionRecords/string:rawOtlpSpans"
{
  "executionRecordId": "00000000-0000-0000-0000-000000000000",
  "spans": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "traceId": "string",
      "spanId": "string",
      "parentSpanId": "string",
      "name": "string",
      "startTimeUnixNano": 0,
      "endTimeUnixNano": 0,
      "receivedAt": 0,
      "rawJson": "string"
    }
  ]
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}