Module Values.FieldsDataSource

A structure containing the extracted fields from a log event. These fields are extracted based on the log format and can be used for structured querying and analysis.

Sourcetype nonrec t = {
  1. data : Data.t option;
    (*

    The actual log data content returned in the streaming response. This contains the fields and values of the log event in a structured format that can be parsed and processed by the client.

    *)
}
Sourceval make : ?data:??? -> unit -> t
Sourceval of_header_and_body : ('a * Data.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Data.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