Values.TraceSourceA collection of segment documents with matching trace IDs.
type nonrec t = {id : TraceId.t option;The unique identifier for the request that generated the trace's segments and subsegments.
*)duration : NullableDouble.t option;The length of time in seconds between the start time of the earliest segment that started and the end time of the last segment that completed.
*)limitExceeded : NullableBoolean.t option;LimitExceeded is set to true when the trace has exceeded the Trace document size limit. For more information about this limit and other X-Ray limits and quotas, see Amazon Web Services X-Ray endpoints and quotas.
*)segments : SegmentList.t option;Segment documents for the segments and subsegments that comprise the trace.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `Double of NullableDouble.t
| `List of
[> `Structure of (string * [> `String of SegmentId.t ]) list ] list
| `String of TraceId.t ])
list ]