mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Limit metrics.
This commit is contained in:
parent
3fc5f5151b
commit
7b9abd72f8
2 changed files with 8 additions and 4 deletions
|
|
@ -52,7 +52,8 @@ async function relationalQuery(
|
|||
and event_type = $4
|
||||
${filterQuery}
|
||||
group by 1
|
||||
order by 2 desc`,
|
||||
order by 2 desc
|
||||
limit 200`,
|
||||
params,
|
||||
);
|
||||
}
|
||||
|
|
@ -86,7 +87,8 @@ async function clickhouseQuery(
|
|||
and ${getBetweenDates('created_at', startDate, endDate)}
|
||||
${filterQuery}
|
||||
group by x
|
||||
order by y desc`,
|
||||
order by y desc
|
||||
limit 200`,
|
||||
params,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,8 @@ async function relationalQuery(
|
|||
${filterQuery}
|
||||
)
|
||||
group by 1
|
||||
order by 2 desc`,
|
||||
order by 2 desc
|
||||
limit 200`,
|
||||
params,
|
||||
);
|
||||
}
|
||||
|
|
@ -63,7 +64,8 @@ async function clickhouseQuery(
|
|||
and ${getBetweenDates('created_at', startDate, endDate)}
|
||||
${filterQuery}
|
||||
group by x
|
||||
order by y desc`,
|
||||
order by y desc
|
||||
limit 200`,
|
||||
params,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue