diff --git a/backend/pkg/intervals/intervals.go b/backend/pkg/intervals/intervals.go index d7e6bfad5..5cc603ad6 100644 --- a/backend/pkg/intervals/intervals.go +++ b/backend/pkg/intervals/intervals.go @@ -1,6 +1,6 @@ package intervals -const EVENTS_COMMIT_INTERVAL = 1 * 60 * 1000 +const EVENTS_COMMIT_INTERVAL = 30 * 1000 const HEARTBEAT_INTERVAL = 2 * 60 * 1000 const INTEGRATIONS_REQUEST_INTERVAL = 2 * 60 * 1000 const EVENTS_PAGE_EVENT_TIMEOUT = 2 * 60 * 1000 diff --git a/frontend/app/api_client.js b/frontend/app/api_client.js index bbba3a246..760123199 100644 --- a/frontend/app/api_client.js +++ b/frontend/app/api_client.js @@ -20,7 +20,8 @@ const siteIdRequiredPaths = [ '/rehydrations', '/sourcemaps', '/errors', - '/funnels' + '/funnels', + '/assist' ]; const noStoringFetchPathStarts = [ diff --git a/frontend/app/components/Assist/Assist.tsx b/frontend/app/components/Assist/Assist.tsx new file mode 100644 index 000000000..74f2095f8 --- /dev/null +++ b/frontend/app/components/Assist/Assist.tsx @@ -0,0 +1,11 @@ +import React from 'react'; +import ChatWindow from './ChatWindow'; + + +export default function Assist() { + return ( +