Module Values.SystemStatusSource

CPU utilization and load average metrics for an Amazon EC2 instance.

Sourcetype nonrec t = {
  1. cPUUtilization : CPUUtilization.t option;
    (*

    CPU utilization metrics for the instance.

    *)
  2. loadAverage : LoadAverage.t option;
    (*

    Load average in the last 1-minute, 5-minute, and 15-minute periods. For more information, see Operating System Metrics.

    *)
}
Sourceval make : ?cPUUtilization:??? -> ?loadAverage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of LoadAverageValue.t ] list | `Structure of (string * [> `Double of NullableDouble.t ]) 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