Module Values.DiskResourceUtilizationSource

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

Sourcetype nonrec t = {
  1. diskReadOpsPerSecond : GenericString.t option;
    (*

    The maximum number of read operations per second.

    *)
  2. diskWriteOpsPerSecond : GenericString.t option;
    (*

    The maximum number of write operations per second.

    *)
  3. diskReadBytesPerSecond : GenericString.t option;
    (*

    The maximum read throughput operations per second.

    *)
  4. diskWriteBytesPerSecond : GenericString.t option;
    (*

    The maximum write throughput operations per second.

    *)
}
Sourceval make : ?diskReadOpsPerSecond:??? -> ?diskWriteOpsPerSecond:??? -> ?diskReadBytesPerSecond:??? -> ?diskWriteBytesPerSecond:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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