mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-25 02:36:20 +01:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
1bce4f2174
@ -39,7 +39,7 @@ async function relationalQuery(data) {
|
||||
}
|
||||
|
||||
async function clickhouseQuery(data) {
|
||||
const { websiteId, sessionId, url, eventName, eventData } = data;
|
||||
const { websiteId, id: sessionId, url, eventName, eventData, country, ...args } = data;
|
||||
const { getDateFormat, sendMessage } = kafka;
|
||||
const website = await cache.fetchWebsite(websiteId);
|
||||
|
||||
@ -52,6 +52,8 @@ async function clickhouseQuery(data) {
|
||||
event_data: eventData ? JSON.stringify(eventData) : null,
|
||||
rev_id: website?.revId || 0,
|
||||
created_at: getDateFormat(new Date()),
|
||||
country: country ? country : null,
|
||||
...args,
|
||||
};
|
||||
|
||||
await sendMessage(params, 'event');
|
||||
|
@ -26,7 +26,7 @@ async function relationalQuery(data) {
|
||||
}
|
||||
|
||||
async function clickhouseQuery(data) {
|
||||
const { websiteId, sessionId, url, referrer } = data;
|
||||
const { websiteId, id: sessionId, url, referrer, country, ...args } = data;
|
||||
const website = await cache.fetchWebsite(websiteId);
|
||||
const { getDateFormat, sendMessage } = kafka;
|
||||
|
||||
@ -37,6 +37,8 @@ async function clickhouseQuery(data) {
|
||||
referrer: referrer?.substring(0, URL_LENGTH),
|
||||
rev_id: website?.revId || 0,
|
||||
created_at: getDateFormat(new Date()),
|
||||
country: country ? country : null,
|
||||
...args,
|
||||
};
|
||||
|
||||
await sendMessage(msg, 'event');
|
||||
|
Loading…
Reference in New Issue
Block a user