mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 15:17:23 +01:00
Fixed realtime chart rendering.
This commit is contained in:
parent
7a5f28870f
commit
92a513e4d0
5 changed files with 49 additions and 26 deletions
|
|
@ -17,6 +17,9 @@ async function relationalQuery(websiteId: string, startDate: Date) {
|
|||
gte: startDate,
|
||||
},
|
||||
},
|
||||
orderBy: {
|
||||
createdAt: 'asc',
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -25,7 +28,7 @@ async function clickhouseQuery(websiteId: string, startDate: Date) {
|
|||
|
||||
return rawQuery(
|
||||
`
|
||||
select distinct
|
||||
select
|
||||
session_id as id,
|
||||
website_id as websiteId,
|
||||
created_at as createdAt,
|
||||
|
|
@ -43,6 +46,7 @@ async function clickhouseQuery(websiteId: string, startDate: Date) {
|
|||
from website_event
|
||||
where website_id = {websiteId:UUID}
|
||||
and created_at >= {startDate:DateTime64}
|
||||
order by created_at asc
|
||||
`,
|
||||
{
|
||||
websiteId,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue