Module Values.CollectionSchemeSource

Specifies what data to collect and how often or when to collect it.

Sourcetype nonrec t = {
  1. timeBasedCollectionScheme : TimeBasedCollectionScheme.t option;
    (*

    Information about a collection scheme that uses a time period to decide how often to collect data.

    *)
  2. conditionBasedCollectionScheme : ConditionBasedCollectionScheme.t option;
    (*

    Information about a collection scheme that uses a simple logical expression to recognize what data to collect.

    *)
}
Sourceval make : ?timeBasedCollectionScheme:??? -> ?conditionBasedCollectionScheme:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of LanguageVersion.t | `Long of CollectionPeriodMs.t | `String of EventExpression.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