Module Values.FairshareUtilizationDetailSource

The fairshare utilization for a job queue, including the number of active shares and top capacity utilization.

Sourcetype nonrec t = {
  1. activeShareCount : Long.t option;
    (*

    The total number of active shares in the fairshare scheduling job queue that are currently utilizing capacity.

    *)
  2. topCapacityUtilization : FairshareCapacityUtilizationList.t option;
    (*

    A list of the top 20 shares with the highest capacity utilization, ordered by usage amount.

    *)
}
Sourceval make : ?activeShareCount:??? -> ?topCapacityUtilization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `Long of Long.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