Module Values.SubstituteStringEntrySource

This object defines one log field key that will be replaced using the substituteString processor.

Sourcetype nonrec t = {
  1. source : Source.t;
    (*

    The key to modify

    *)
  2. from : FromKey.t;
    (*

    The regular expression string to be replaced. Special regex characters such as [ and ] must be escaped using \\ when using double quotes and with \ when using single quotes. For more information, see Class Pattern on the Oracle web site.

    *)
  3. to_ : ToKey.t;
    (*

    The string to be substituted for each match of from

    *)
}
Sourceval context_ : string
Sourceval make : source:Source.t -> from:FromKey.t -> to_:ToKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Source.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