Module Values.ContainerLogRotationConfigurationSource

The settings for container log rotation.

Sourcetype nonrec t = {
  1. rotationSize : RotationSize.t;
    (*

    The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.

    *)
  2. maxFilesToKeep : MaxFilesToKeep.t;
    (*

    The number of files to keep in container after rotation.

    *)
}
Sourceval context_ : string
Sourceval make : rotationSize:RotationSize.t -> maxFilesToKeep:MaxFilesToKeep.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxFilesToKeep.t | `String of RotationSize.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