Module Values.EdgeSource

Information about a connection between two services. An edge can be a synchronous connection, such as typical call between client and service, or an asynchronous link, such as a Lambda function which retrieves an event from an SNS queue.

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

    Identifier of the edge. Unique within a service map.

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

    The start time of the first segment on the edge.

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

    The end time of the last segment on the edge.

    *)
  4. summaryStatistics : EdgeStatistics.t option;
    (*

    Response statistics for segments on the edge.

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

    A histogram that maps the spread of client response times on an edge. Only populated for synchronous edges.

    *)
  6. aliases : AliasList.t option;
    (*

    Aliases for the edge.

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

    Describes an asynchronous connection, with a value of link.

    *)
  8. receivedEventAgeHistogram : Histogram.t option;
    (*

    A histogram that maps the spread of event age when received by consumers. Age is calculated each time an event is received. Only populated when EdgeType is link.

    *)
}
Sourceval make : ?referenceId:??? -> ?startTime:??? -> ?endTime:??? -> ?summaryStatistics:??? -> ?responseTimeHistogram:??? -> ?aliases:??? -> ?edgeType:??? -> ?receivedEventAgeHistogram:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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 ]
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