Batch

Batches record the execution of indicator groups.

Table: batch

AttributeTypeDescription
idIntegerUnique identifier of the batch, used as a primary key.
statusTextIndicate the current state of the batch.
created_dateTimestampRecord created date.
updated_dateTimestampRecord last updated date.
created_by_idIntegerForeign key of the user table, to indicate which user created the record.
updated_by_idIntegerForeign key of the user table, to indicate which user updated the record.
user_group_idIntegerForeign key of the user_group table, to indicate to which user group the record belongs to.
indicator_group_idIntegerForeign key of the indicator_group table, to indicate for which indicator group the batch was executed.

Session

Sessions record the execution of indicators within a batch.

Table: session

AttributeTypeDescription
idIntegerUnique identifier of the session, used as a primary key.
statusTextIndicate the current state of the session.
alert_operatorTextOperator used to compare the result dataset of the indicator with the alert threshold.
alert_thresholdFloatNumeric value used to evaluate the result dataset of the indicator.
nb_recordsIntegerNumber of records in the result dataset of the indicator.
nb_records_alertIntegerNumber of records which triggered an alert in the result dataset of the indicator.
nb_records_no_alertIntegerNumber of records which did not trigger an alert in the result dataset of the indicator.
created_dateTimestampRecord created date.
updated_dateTimestampRecord last updated date.
created_by_idIntegerForeign key of the user table, to indicate which user created the record.
updated_by_idIntegerForeign key of the user table, to indicate which user updated the record.
user_group_idIntegerForeign key of the user_group table, to indicate to which user group the record belongs to.
batch_idIntegerForeign key of the batch table, to indicate during which batch the session was executed.
indicator_idIntegerForeign key of the indicator table, to indicate for which indicator the session was executed.