mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 20:39:44 +01:00
fix event data stats
This commit is contained in:
parent
9a7fb1f36c
commit
e42fe5c996
@ -3,7 +3,7 @@ import { useCors, useAuth } from 'lib/middleware';
|
|||||||
import { NextApiRequestQueryBody } from 'lib/types';
|
import { NextApiRequestQueryBody } from 'lib/types';
|
||||||
import { NextApiResponse } from 'next';
|
import { NextApiResponse } from 'next';
|
||||||
import { ok, methodNotAllowed, unauthorized } from 'next-basics';
|
import { ok, methodNotAllowed, unauthorized } from 'next-basics';
|
||||||
import { getEventDataFields } from 'queries';
|
import { getEventDataStats } from 'queries';
|
||||||
|
|
||||||
export interface EventDataStatsRequestQuery {
|
export interface EventDataStatsRequestQuery {
|
||||||
websiteId: string;
|
websiteId: string;
|
||||||
@ -11,7 +11,6 @@ export interface EventDataStatsRequestQuery {
|
|||||||
startDate: string;
|
startDate: string;
|
||||||
endDate: string;
|
endDate: string;
|
||||||
};
|
};
|
||||||
field?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async (
|
export default async (
|
||||||
@ -31,19 +30,9 @@ export default async (
|
|||||||
const startDate = new Date(+startAt);
|
const startDate = new Date(+startAt);
|
||||||
const endDate = new Date(+endAt);
|
const endDate = new Date(+endAt);
|
||||||
|
|
||||||
const results = await getEventDataFields(websiteId, { startDate, endDate });
|
const data = await getEventDataStats(websiteId, { startDate, endDate });
|
||||||
const fields = new Set();
|
|
||||||
|
|
||||||
const data = results.reduce(
|
return ok(res, data);
|
||||||
(obj, row) => {
|
|
||||||
fields.add(row.fieldName);
|
|
||||||
obj.records += Number(row.total);
|
|
||||||
return obj;
|
|
||||||
},
|
|
||||||
{ events: results.length, records: 0 },
|
|
||||||
);
|
|
||||||
|
|
||||||
return ok(res, { ...data, fields: fields.size });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return methodNotAllowed(res);
|
return methodNotAllowed(res);
|
||||||
|
69
queries/analytics/eventData/getEventDataStats.ts
Normal file
69
queries/analytics/eventData/getEventDataStats.ts
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
import prisma from 'lib/prisma';
|
||||||
|
import clickhouse from 'lib/clickhouse';
|
||||||
|
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
|
||||||
|
import { QueryFilters } from 'lib/types';
|
||||||
|
|
||||||
|
export async function getEventDataStats(
|
||||||
|
...args: [websiteId: string, filters: QueryFilters]
|
||||||
|
): Promise<{
|
||||||
|
events: number;
|
||||||
|
fields: number;
|
||||||
|
records: number;
|
||||||
|
}> {
|
||||||
|
return runQuery({
|
||||||
|
[PRISMA]: () => relationalQuery(...args),
|
||||||
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
||||||
|
}).then(results => results[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function relationalQuery(websiteId: string, filters: QueryFilters) {
|
||||||
|
const { rawQuery, parseFilters } = prisma;
|
||||||
|
const { filterQuery, params } = await parseFilters(websiteId, filters);
|
||||||
|
|
||||||
|
return rawQuery(
|
||||||
|
`
|
||||||
|
select
|
||||||
|
count(distinct t.website_event_id) as "events",
|
||||||
|
count(distinct t.event_key) as "fields",
|
||||||
|
sum(t.total) as "records"
|
||||||
|
from (
|
||||||
|
select
|
||||||
|
website_event_id,
|
||||||
|
event_key,
|
||||||
|
count(*) as "total"
|
||||||
|
from event_data
|
||||||
|
where website_id = {{websiteId::uuid}}
|
||||||
|
and created_at between {{startDate}} and {{endDate}}
|
||||||
|
${filterQuery}
|
||||||
|
group by website_event_id, event_key
|
||||||
|
) as t
|
||||||
|
`,
|
||||||
|
params,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function clickhouseQuery(websiteId: string, filters: QueryFilters) {
|
||||||
|
const { rawQuery, parseFilters } = clickhouse;
|
||||||
|
const { filterQuery, params } = await parseFilters(websiteId, filters);
|
||||||
|
|
||||||
|
return rawQuery(
|
||||||
|
`
|
||||||
|
select
|
||||||
|
count(distinct t.event_id) as "events",
|
||||||
|
count(distinct t.event_key) as "fields",
|
||||||
|
sum(t.total) as "records"
|
||||||
|
from (
|
||||||
|
select
|
||||||
|
event_id,
|
||||||
|
event_key,
|
||||||
|
count(*) as "total"
|
||||||
|
from event_data
|
||||||
|
where website_id = {websiteId:UUID}
|
||||||
|
and created_at between {startDate:DateTime} and {endDate:DateTime}
|
||||||
|
${filterQuery}
|
||||||
|
group by event_id, event_key
|
||||||
|
) as t
|
||||||
|
`,
|
||||||
|
params,
|
||||||
|
);
|
||||||
|
}
|
@ -9,6 +9,7 @@ export * from './analytics/events/getEventUsage';
|
|||||||
export * from './analytics/events/getEvents';
|
export * from './analytics/events/getEvents';
|
||||||
export * from './analytics/eventData/getEventDataEvents';
|
export * from './analytics/eventData/getEventDataEvents';
|
||||||
export * from './analytics/eventData/getEventDataFields';
|
export * from './analytics/eventData/getEventDataFields';
|
||||||
|
export * from './analytics/eventData/getEventDataStats';
|
||||||
export * from './analytics/eventData/getEventDataUsage';
|
export * from './analytics/eventData/getEventDataUsage';
|
||||||
export * from './analytics/events/saveEvent';
|
export * from './analytics/events/saveEvent';
|
||||||
export * from './analytics/reports/getFunnel';
|
export * from './analytics/reports/getFunnel';
|
||||||
|
Loading…
Reference in New Issue
Block a user