Module Values.CPUSource

Source server CPU information.

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

    The number of CPU cores on the source server.

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

    The source server's CPU model name.

    *)
}
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