Module Values.InsightSource

When fault rates go outside of the expected range, X-Ray creates an insight. Insights tracks emergent issues within your applications.

Sourcetype nonrec t = {
  1. insightId : InsightId.t option;
    (*

    The insights unique identifier.

    *)
  2. groupARN : GroupARN.t option;
    (*

    The Amazon Resource Name (ARN) of the group that the insight belongs to.

    *)
  3. groupName : GroupName.t option;
    (*

    The name of the group that the insight belongs to.

    *)
  4. rootCauseServiceId : ServiceId.t option;
  5. categories : InsightCategoryList.t option;
    (*

    The categories that label and describe the type of insight.

    *)
  6. state : InsightState.t option;
    (*

    The current state of the insight.

    *)
  7. startTime : Timestamp.t option;
    (*

    The time, in Unix seconds, at which the insight began.

    *)
  8. endTime : Timestamp.t option;
    (*

    The time, in Unix seconds, at which the insight ended.

    *)
  9. summary : InsightSummaryText.t option;
    (*

    A brief description of the insight.

    *)
  10. clientRequestImpactStatistics : RequestImpactStatistics.t option;
    (*

    The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

    *)
  11. rootCauseServiceRequestImpactStatistics : RequestImpactStatistics.t option;
    (*

    The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

    *)
  12. topAnomalousServices : AnomalousServiceList.t option;
    (*

    The service within the insight that is most impacted by the incident.

    *)
}
Sourceval make : ?insightId:??? -> ?groupARN:??? -> ?groupName:??? -> ?rootCauseServiceId:??? -> ?categories:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> ?summary:??? -> ?clientRequestImpactStatistics:??? -> ?rootCauseServiceRequestImpactStatistics:??? -> ?topAnomalousServices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]) list ] list | `String of InsightId.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `Long of NullableLong.t | `String of String_.t ]) list | `Timestamp of Timestamp.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