Module Values.QueueSnapshotUtilizationDetailSource

The job queue utilization at a specific point in time, including total capacity usage, and quota share or fairshare utilization breakdown depending on the job queue scheduling policy.

Sourcetype nonrec t = {
  1. totalCapacityUsage : QueueSnapshotCapacityUsageList.t option;
    (*

    The total capacity usage for the entire job queue.

    *)
  2. fairshareUtilization : FairshareUtilizationDetail.t option;
    (*

    The utilization information for a fairshare scheduling job queues, including active share count and top capacity utilization by share.

    *)
  3. quotaShareUtilization : QuotaShareUtilizationDetail.t option;
    (*

    The utilization information for a job queue with a quota share scheduling policy.

    *)
  4. lastUpdatedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the queue utilization information was last updated.

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