home / public

reports

3 rows where domain_id = 21 sorted by checked_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

id domain_id input_url final_url http_status server page_load_ms consent_phase_ms total_ms responses_count cookies_count local_storage_count analytics_score analytics_verdict checked_at ▲
52d92a87-4cc9-4889-ae5e-1f68305e8031 21 21 https://nsr.se/ https://nsr.se/ 200 46.246.46.57:443 12085 5372 17457 90 0 0 7 warn 1781012293960
156b9d9e-a389-4595-9f84-089f6e7809fa 21 21 https://nsr.se/ https://nsr.se/ 200 46.246.46.57:443 12055 5049 17104 92 0 0 7 warn 1780684805319
9e2db2e4-6239-45cd-b6b2-b1fc4a2f16bd 21 21 https://nsr.se/ https://nsr.se/ 200 46.246.46.57:443 12697 5041 17738 89 0 0     1778641272577

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE reports (
  id                  TEXT    PRIMARY KEY,
  domain_id           INTEGER NOT NULL REFERENCES domains(id),
  input_url           TEXT    NOT NULL,
  final_url           TEXT    NOT NULL,
  http_status         INTEGER NOT NULL,
  server              TEXT,
  page_load_ms        INTEGER,
  consent_phase_ms    INTEGER,
  total_ms            INTEGER,
  responses_count     INTEGER,
  cookies_count       INTEGER,
  local_storage_count INTEGER,
  analytics_score     INTEGER,
  analytics_verdict   TEXT,
  checked_at          INTEGER NOT NULL
);
CREATE INDEX idx_reports_domain_checked ON reports(domain_id, checked_at DESC);
Powered by Datasette · Queries took 15.949ms