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 0303d90 commit dd1eff2Copy full SHA for dd1eff2
src/views/GraphView.vue
@@ -324,7 +324,7 @@ const onGraphReady = () => {
324
}
325
326
327
- // 30-second heartbeat interval
+ // 5-minute heartbeat interval
328
tabCountInterval = window.setInterval(() => {
329
const now = Date.now()
330
@@ -341,7 +341,7 @@ const onGraphReady = () => {
341
// Track tab count (include current tab)
342
const tabCount = activeTabs.size + 1
343
telemetry.trackTabCount({ tab_count: tabCount })
344
- }, 30000)
+ }, 60000 * 5)
345
346
// Send initial heartbeat
347
tabCountChannel.postMessage({ type: 'heartbeat', tabId: currentTabId })
0 commit comments