Module Values.CPUSource

Information about a server's CPU.

Sourcetype nonrec t = {
  1. cores : PositiveInteger.t option;
    (*

    The number of CPU cores.

    *)
  2. modelName : BoundedString.t option;
    (*

    The model name of the CPU.

    *)
}
Sourceval make : ?cores:??? -> ?modelName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PositiveInteger.t | `String of BoundedString.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