Module Values.AnalyticsAndOperatorSource

A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates in any combination, and an object must match all of the predicates for the filter to apply.

Sourcetype nonrec t = {
  1. prefix : Prefix.t option;
    (*

    The prefix to use when evaluating an AND predicate: The prefix that an object must have to be included in the metrics results.

    *)
  2. tags : TagSet.t option;
    (*

    The list of tags to use when evaluating an AND predicate.

    *)
}
Sourceval make : ?prefix:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ObjectKey.t ]) list ] list | `String of Prefix.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