diff --git a/src/views/GraphView.vue b/src/views/GraphView.vue index a016909d6..d05446125 100644 --- a/src/views/GraphView.vue +++ b/src/views/GraphView.vue @@ -324,7 +324,7 @@ const onGraphReady = () => { } } - // 30-second heartbeat interval + // 5-minute heartbeat interval tabCountInterval = window.setInterval(() => { const now = Date.now() @@ -341,7 +341,7 @@ const onGraphReady = () => { // Track tab count (include current tab) const tabCount = activeTabs.size + 1 telemetry.trackTabCount({ tab_count: tabCount }) - }, 30000) + }, 60000 * 5) // Send initial heartbeat tabCountChannel.postMessage({ type: 'heartbeat', tabId: currentTabId })