Module Values_0.DataQualityAggregatedMetricsSource

A summary of metrics showing the total counts of processed rows and rules, including their pass/fail statistics based on row-level results.

Sourcetype nonrec t = {
  1. totalRowsProcessed : NullableDouble.t option;
    (*

    The total number of rows that were processed during the data quality evaluation.

    *)
  2. totalRowsPassed : NullableDouble.t option;
    (*

    The total number of rows that passed all applicable data quality rules.

    *)
  3. totalRowsFailed : NullableDouble.t option;
    (*

    The total number of rows that failed one or more data quality rules.

    *)
  4. totalRulesProcessed : NullableDouble.t option;
    (*

    The total number of data quality rules that were evaluated.

    *)
  5. totalRulesPassed : NullableDouble.t option;
    (*

    The total number of data quality rules that passed their evaluation criteria.

    *)
  6. totalRulesFailed : NullableDouble.t option;
    (*

    The total number of data quality rules that failed their evaluation criteria.

    *)
}
Sourceval make : ?totalRowsProcessed:??? -> ?totalRowsPassed:??? -> ?totalRowsFailed:??? -> ?totalRulesProcessed:??? -> ?totalRulesPassed:??? -> ?totalRulesFailed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.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