Module Values.ServiceOperationSource

This structure contains information about an operation discovered by Application Signals. An operation is a specific function performed by a service that was discovered by Application Signals, and is often an API that is called by an upstream dependent.

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

    The name of the operation, discovered by Application Signals.

    *)
  2. metricReferences : MetricReferences.t option;
    (*

    An array of structures that each contain information about one metric associated with this service operation that was discovered by Application Signals.

    *)
}
Sourceval make : ?name:??? -> ?metricReferences:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DimensionName.t ]) list ] list | `String of Namespace.t ]) list ] list | `String of OperationName.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