mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
Add Web Vitals performance tracking (LCP, INP, CLS, FCP, TTFB)
End-to-end performance metrics tracking: dedicated database table with percentile aggregation, tracker collection behind data-perf attribute, /api/send handling, report API endpoints, and Performance dashboard page with threshold-based metric cards, time-series chart, and per-page breakdown. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
8cd3c03702
commit
ce9e2416fb
24 changed files with 1028 additions and 8 deletions
28
prisma/migrations/18_add_performance/migration.sql
Normal file
28
prisma/migrations/18_add_performance/migration.sql
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
-- CreateTable
|
||||
CREATE TABLE "performance" (
|
||||
"performance_id" UUID NOT NULL,
|
||||
"website_id" UUID NOT NULL,
|
||||
"session_id" UUID NOT NULL,
|
||||
"visit_id" UUID NOT NULL,
|
||||
"url_path" VARCHAR(500) NOT NULL,
|
||||
"lcp" DECIMAL(10,1),
|
||||
"inp" DECIMAL(10,1),
|
||||
"cls" DECIMAL(10,4),
|
||||
"fcp" DECIMAL(10,1),
|
||||
"ttfb" DECIMAL(10,1),
|
||||
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||
|
||||
CONSTRAINT "performance_pkey" PRIMARY KEY ("performance_id")
|
||||
);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "performance_website_id_idx" ON "performance"("website_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "performance_session_id_idx" ON "performance"("session_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "performance_website_id_created_at_idx" ON "performance"("website_id", "created_at");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "performance_website_id_url_path_created_at_idx" ON "performance"("website_id", "url_path", "created_at");
|
||||
Loading…
Add table
Add a link
Reference in a new issue