Module Values.ErrorRootCauseServiceSource

A collection of fields identifying the services in a trace summary error.

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

    The service name.

    *)
  2. names : ServiceNames.t option;
    (*

    A collection of associated service names.

    *)
  3. type_ : String_.t option;
    (*

    The type associated to the service.

    *)
  4. accountId : String_.t option;
    (*

    The account ID associated to the service.

    *)
  5. entityPath : ErrorRootCauseEntityPath.t option;
    (*

    The path of root cause entities found on the service.

    *)
  6. inferred : NullableBoolean.t option;
    (*

    A Boolean value indicating if the service is inferred from the trace.

    *)
}
Sourceval make : ?name:??? -> ?names:??? -> ?type_:??? -> ?accountId:??? -> ?entityPath:??? -> ?inferred:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `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