umami/queries/analytics/event/getEventMetrics.js

66 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-07-21 04:31:26 +00:00
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
2022-08-26 05:04:32 +00:00
import clickhouse from 'lib/clickhouse';
2022-08-26 05:20:30 +00:00
import { getDateQuery, getFilterQuery, rawQuery } from 'lib/relational';
2022-08-26 05:23:19 +00:00
import { runAnalyticsQuery } from 'lib/db';
2022-07-12 21:14:36 +00:00
2022-07-21 04:31:26 +00:00
export async function getEventMetrics(...args) {
return runAnalyticsQuery({
2022-07-25 16:47:11 +00:00
[RELATIONAL]: () => relationalQuery(...args),
[CLICKHOUSE]: () => clickhouseQuery(...args),
2022-07-21 04:31:26 +00:00
});
2022-07-15 23:47:38 +00:00
}
2022-07-21 04:31:26 +00:00
async function relationalQuery(
2022-07-12 21:14:36 +00:00
website_id,
start_at,
end_at,
timezone = 'utc',
unit = 'day',
filters = {},
) {
const params = [website_id, start_at, end_at];
return rawQuery(
`
select
2022-07-30 05:30:09 +00:00
event_name x,
2022-07-21 20:21:33 +00:00
${getDateQuery('created_at', unit, timezone)} t,
2022-07-12 21:14:36 +00:00
count(*) y
from event
where website_id=$1
and created_at between $2 and $3
${getFilterQuery('event', filters, params)}
group by 1, 2
order by 2
`,
params,
);
}
2022-07-15 23:47:38 +00:00
2022-07-21 04:31:26 +00:00
async function clickhouseQuery(
2022-07-15 23:47:38 +00:00
website_id,
start_at,
end_at,
2022-07-21 04:31:26 +00:00
timezone = 'UTC',
2022-07-15 23:47:38 +00:00
unit = 'day',
filters = {},
) {
2022-07-21 04:31:26 +00:00
const params = [website_id];
2022-07-15 23:47:38 +00:00
2022-08-26 05:04:32 +00:00
return clickhouse.rawQuery(
2022-07-15 23:47:38 +00:00
`
select
2022-08-09 07:43:47 +00:00
event_name x,
2022-08-26 05:04:32 +00:00
${clickhouse.getDateQuery('created_at', unit, timezone)} t,
2022-07-15 23:47:38 +00:00
count(*) y
from event
2022-07-21 04:31:26 +00:00
where website_id= $1
2022-08-26 05:04:32 +00:00
and ${clickhouse.getBetweenDates('created_at', start_at, end_at)}
${clickhouse.getFilterQuery('event', filters, params)}
2022-07-21 04:31:26 +00:00
group by x, t
order by t
2022-07-15 23:47:38 +00:00
`,
params,
);
}