Module Values.ServiceSource

Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.

Sourcetype nonrec t = {
  1. referenceId : NullableInteger.t option;
    (*

    Identifier for the service. Unique within the service map.

    *)
  2. name : String_.t option;
    (*

    The canonical name of the service.

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

    A list of names for the service, including the canonical name.

    *)
  4. root : NullableBoolean.t option;
    (*

    Indicates that the service was the first service to process a request.

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

    Identifier of the Amazon Web Services account in which the service runs.

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

    The type of service. Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used. Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. client - Represents the clients that sent requests to a root service. remote - A downstream service of indeterminate type.

    *)
  7. state : String_.t option;
    (*

    The service's state.

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

    The start time of the first segment that the service generated.

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

    The end time of the last segment that the service generated.

    *)
  10. edges : EdgeList.t option;
    (*

    Connections to downstream services.

    *)
  11. summaryStatistics : ServiceStatistics.t option;
    (*

    Aggregated statistics for the service.

    *)
  12. durationHistogram : Histogram.t option;
    (*

    A histogram that maps the spread of service durations.

    *)
  13. responseTimeHistogram : Histogram.t option;
    (*

    A histogram that maps the spread of service response times.

    *)
}
Sourceval make : ?referenceId:??? -> ?name:??? -> ?names:??? -> ?root:??? -> ?accountId:??? -> ?type_:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> ?edges:??? -> ?summaryStatistics:??? -> ?durationHistogram:??? -> ?responseTimeHistogram:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of NullableInteger.t | `List of [> `String of String_.t | `Structure of (string * [> `Double of Double.t | `Integer of NullableInteger.t | `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of NullableDouble.t | `Long of NullableLong.t | `Structure of (string * [> `Long of NullableLong.t ]) list ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of NullableDouble.t | `Long of NullableLong.t | `Structure of (string * [> `Long of NullableLong.t ]) list ]) 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