mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
aceb904398
* Fixed issue with realtime page rendering. * fix auth, add pg extension (#1596) * Fixed change password issue. API refactoring. Closes #1592. * Fixed account lookup. * Fixed issue with accessing user dashboards. Closes #1590 * fix sort on dashboard (#1600) Co-authored-by: Brian Cao <brian@umami.is>
31 lines
783 B
JavaScript
31 lines
783 B
JavaScript
import { getPageviews } from '../pageview/getPageviews';
|
|
import { getSessions } from '../session/getSessions';
|
|
import { getEvents } from '../event/getEvents';
|
|
|
|
export async function getRealtimeData(websites, time) {
|
|
const [pageviews, sessions, events] = await Promise.all([
|
|
getPageviews(websites, time),
|
|
getSessions(websites, time),
|
|
getEvents(websites, time),
|
|
]);
|
|
|
|
return {
|
|
pageviews: pageviews.map(({ id, ...props }) => ({
|
|
__id: `p${id}`,
|
|
pageviewId: id,
|
|
...props,
|
|
})),
|
|
sessions: sessions.map(({ id, ...props }) => ({
|
|
__id: `s${id}`,
|
|
sessionId: id,
|
|
...props,
|
|
})),
|
|
events: events.map(({ id, ...props }) => ({
|
|
__id: `e${id}`,
|
|
eventId: id,
|
|
...props,
|
|
})),
|
|
timestamp: Date.now(),
|
|
};
|
|
}
|