Module Values.SplunkBufferingHintsSource

The buffering options. If no value is specified, the default values for Splunk are used.

Sourcetype nonrec t = {
  1. intervalInSeconds : SplunkBufferingIntervalInSeconds.t option;
    (*

    Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 60 (1 minute).

    *)
  2. sizeInMBs : SplunkBufferingSizeInMBs.t option;
    (*

    Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

    *)
}
Sourceval make : ?intervalInSeconds:??? -> ?sizeInMBs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SplunkBufferingIntervalInSeconds.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