~boehs/rsslytics

📰 Analytics for RSS feeds

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~boehs/rsslytics
read/write
git@git.sr.ht:~boehs/rsslytics

You can also use your local clone with git send-email.

RSSLytics is a little bit of code I use for collecting analytics on my RSS feed. It's an incredibly creative name. When I get around to it I'll publish some code I use for analysis as well, but this should do for now.

CREATE TABLE IF NOT EXISTS log (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    date DATE NOT NULL,
    readerId TEXT NOT NULL,
    ip TEXT NOT NULL,
    feedUrl TEXT NOT NULL,
    feedId TEXT,
    subscriberCount INTEGER,
    readerName TEXT,
    readerVersion TEXT,
    userAgent TEXT NOT NULL
);