Created
September 15, 2023 01:47
-
-
Save kapitanluffy/45329845a7c29094d57a07863ff6dca1 to your computer and use it in GitHub Desktop.
Auto refreshes rudderstack live events every 5s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function autorefreshRudderstack() { | |
document.querySelector('button[name="Pause"]').setAttribute('id', 'button--refresh') | |
setInterval(() => { | |
document.querySelector('#button--refresh').click() | |
document.querySelector('#button--refresh').click() | |
}, 5000) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment