Skip to content

Commit dd1eff2

Browse files
[backport rh-test] increase tracking heartbeat interval from 30sec to 5min (#6632)
Backport of #6631 to `rh-test` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6632-backport-rh-test-increase-tracking-heartbeat-interval-from-30sec-to-5min-2a46d73d3650812cb1cfc58d0797a9d9) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne <[email protected]>
1 parent 0303d90 commit dd1eff2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/GraphView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ const onGraphReady = () => {
324324
}
325325
}
326326
327-
// 30-second heartbeat interval
327+
// 5-minute heartbeat interval
328328
tabCountInterval = window.setInterval(() => {
329329
const now = Date.now()
330330
@@ -341,7 +341,7 @@ const onGraphReady = () => {
341341
// Track tab count (include current tab)
342342
const tabCount = activeTabs.size + 1
343343
telemetry.trackTabCount({ tab_count: tabCount })
344-
}, 30000)
344+
}, 60000 * 5)
345345
346346
// Send initial heartbeat
347347
tabCountChannel.postMessage({ type: 'heartbeat', tabId: currentTabId })

0 commit comments

Comments
 (0)