Skip to content

Store

Result persistence backends for storing check results over time.

SQLite Store

SQLite result store for persisting check results locally.

SQLiteStore(db_path=DEFAULT_DB_PATH)

Stores check results in a local SQLite database.

save_result(result)

Save a suite result. Returns the run_id.

get_history(suite_name=None, limit=20)

Get recent run history.

get_run_details(run_id)

Get check results for a specific run.

get_metrics(suite_name, check_name, metric_name, limit=30)

Get historical metric values for anomaly detection.