We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a way to limit traffic and data usage, we (at the company I work for) implemented a recording sampleRate mechanism over the legacy snippet.
we do something like this:
const sampleRate = 0.02 ..... require('./external/fullstory') window.FS.shutdown() if (Math.random() <= sampleRate) { .... window.FS.restart() }
It could be nice to have this functionality come out of the box via the npm module. Let me know what you think. Thanks!
The text was updated successfully, but these errors were encountered:
Hey @id0Sch thanks for your suggestion! We'll look into this.
Sorry, something went wrong.
No branches or pull requests
As a way to limit traffic and data usage, we (at the company I work for) implemented a recording sampleRate mechanism over the legacy snippet.
we do something like this:
It could be nice to have this functionality come out of the box via the npm module.
Let me know what you think.
Thanks!
The text was updated successfully, but these errors were encountered: