Min count
Data quality rule that verifies if a data quality check reading is greater or equal a minimum value.
Parameters
This rule has one parameter that should be configured for each alert :
low
:
rule threshold for a low severity (1) alertmin_value
: float
minimum accepted value for theactual_value
returned by the sensor (inclusive)
medium
:
rule threshold for a medium severity (2) alertmin_value
: float
minimum accepted value for theactual_value
returned by the sensor (inclusive)
high
:
rule threshold for a high severity (3) alertmin_value
: float
minimum accepted value for theactual_value
returned by the sensor (inclusive)
Example
The following example shows how to implement min_count
rule for a check.
The assigned severity depends on sensor result (see YAML configuration below):
result >= 90.0
, the check is passed: valid result90.0 > result >= 80.0
the severity is low (1)80.0 > result >= 70.0
the severity is medium (2)70.0 > result
, the severity is high (3)