Module Values.FaultRootCauseEntitySource

A collection of segments and corresponding subsegments associated to a trace summary fault error.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the entity.

    *)
  2. exceptions : RootCauseExceptions.t option;
    (*

    The types and messages of the exceptions.

    *)
  3. remote : NullableBoolean.t option;
    (*

    A flag that denotes a remote subsegment.

    *)
}
Sourceval make : ?name:??? -> ?exceptions:??? -> ?remote:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t