Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add HTTP-RSR to daily retrieval stats #440

Merged
merged 19 commits into from
Jan 9, 2025
Merged
3 changes: 1 addition & 2 deletions migrations/001.do.retrieval-stats.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
CREATE TABLE retrieval_stats (
day DATE NOT NULL PRIMARY KEY,
total INT NOT NULL,
successful INT NOT NULL,
successful_http INT NOT NULL
successful INT NOT NULL
);
bajtos marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 2 additions & 0 deletions migrations/021.do.sucessful-http-retrieval-stats.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE retrieval_stats
ADD COLUMN IF NOT EXISTS successful_http INT NOT NULL DEFAULT 0
bajtos marked this conversation as resolved.
Show resolved Hide resolved
bajtos marked this conversation as resolved.
Show resolved Hide resolved
Loading