Module Values.CompositeSliConfigSource

This structure contains the configuration for a composite service level indicator (SLI) that aggregates metrics across multiple operations of a service for service-level SLOs.

Sourcetype nonrec t = {
  1. selectionConfig : SelectionConfig.t;
    (*

    Specifies how operations are selected for this service-level SLO. Operations can be selected explicitly by listing them, by specifying a prefix to match operation names, or by providing a regular expression pattern.

    *)
  2. components : CompositeSliComponents.t option;
    (*

    The list of operations included in this composite SLI. You must specify between 2 and 20 components. Each component is a CompositeSliComponent that identifies a single operation by its OperationName.

    *)
}
Sourceval context_ : string
Sourceval make : ?components:??? -> selectionConfig:SelectionConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of OperationName.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of SelectionPattern.t ]) list ]) 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