Module Values.DataQualitySummarySource

DataQualitySummary gives aggregated statistics over all the sensors about a completed ingestion job. It primarily gives more information about statistics over different incorrect data like MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats, InsufficientSensorData, DuplicateTimeStamps.

Sourcetype nonrec t = {
  1. insufficientSensorData : InsufficientSensorData.t option;
    (*

    Parameter that gives information about insufficient data for sensors in the dataset. This includes information about those sensors that have complete data missing and those with a short date range.

    *)
  2. missingSensorData : MissingSensorData.t option;
    (*

    Parameter that gives information about data that is missing over all the sensors in the input data.

    *)
  3. invalidSensorData : InvalidSensorData.t option;
    (*

    Parameter that gives information about data that is invalid over all the sensors in the input data.

    *)
  4. unsupportedTimestamps : UnsupportedTimestamps.t option;
    (*

    Parameter that gives information about unsupported timestamps in the input data.

    *)
  5. duplicateTimestamps : DuplicateTimestamps.t option;
    (*

    Parameter that gives information about duplicate timestamps in the input data.

    *)
}
Sourceval make : ?insufficientSensorData:??? -> ?missingSensorData:??? -> ?invalidSensorData:??? -> ?unsupportedTimestamps:??? -> ?duplicateTimestamps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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