Module Values.LogGroupFieldSource

The fields contained in log events found by a GetLogGroupFields operation, along with the percentage of queried log events in which each field appears.

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

    The name of a log field.

    *)
  2. percent : Percentage.t option;
    (*

    The percentage of log events queried that contained the field.

    *)
}
Sourceval make : ?name:??? -> ?percent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Percentage.t | `String of Field.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