Module Values.TestTransformerRequestSource

Use this operation to test a log transformer. You enter the transformer configuration and a set of log events to test with. The operation responds with an array that includes the original log events and the transformed versions.

Sourcetype nonrec t = {
  1. transformerConfig : Processors.t;
    (*

    This structure contains the configuration of this log transformer that you want to test. A log transformer is an array of processors, where each processor applies one type of transformation to the log events that are ingested.

    *)
  2. logEventMessages : TestEventMessages.t;
    (*

    An array of the raw log events that you want to use to test this transformer.

    *)
}
Sourceval context_ : string
Sourceval make : transformerConfig:Processors.t -> logEventMessages:TestEventMessages.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EventMessage.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Flatten.t | `Enum of string | `List of [> `String of Column.t | `Structure of (string * [> `Boolean of OverwriteIfExists.t | `Enum of string | `String of Key.t ]) list ] list | `String of QuoteCharacter.t ]) list ]) list ] 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