Module Values_2.EdgeModelStatSource

Status of edge devices with this model.

Sourcetype nonrec t = {
  1. modelName : Values_0.EntityName.t option;
    (*

    The name of the model.

    *)
  2. modelVersion : Values_0.EdgeVersion.t option;
    (*

    The model version.

    *)
  3. offlineDeviceCount : Values_0.Long.t option;
    (*

    The number of devices that have this model version and do not have a heart beat.

    *)
  4. connectedDeviceCount : Values_0.Long.t option;
    (*

    The number of devices that have this model version and have a heart beat.

    *)
  5. activeDeviceCount : Values_0.Long.t option;
    (*

    The number of devices that have this model version, a heart beat, and are currently running.

    *)
  6. samplingDeviceCount : Values_0.Long.t option;
    (*

    The number of devices with this model version and are producing sample data.

    *)
}
Sourceval make : ?modelName:??? -> ?modelVersion:??? -> ?offlineDeviceCount:??? -> ?connectedDeviceCount:??? -> ?activeDeviceCount:??? -> ?samplingDeviceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_0.Long.t | `String of Values_0.EntityName.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