We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27afd01 commit 1f3fb90Copy full SHA for 1f3fb90
src/views/GraphView.vue
@@ -330,7 +330,7 @@ const onGraphReady = () => {
330
}
331
332
333
- // 30-second heartbeat interval
+ // 5-minute heartbeat interval
334
tabCountInterval = window.setInterval(() => {
335
const now = Date.now()
336
@@ -347,7 +347,7 @@ const onGraphReady = () => {
347
// Track tab count (include current tab)
348
const tabCount = activeTabs.size + 1
349
telemetry.trackTabCount({ tab_count: tabCount })
350
- }, 30000)
+ }, 60000 * 5)
351
352
// Send initial heartbeat
353
tabCountChannel.postMessage({ type: 'heartbeat', tabId: currentTabId })
0 commit comments