decrease sentry sample rate to 1%

This commit is contained in:
Brian Gough 2015-12-10 14:18:20 +00:00
parent 297e33f1a0
commit ba6c361afa

View file

@ -57,7 +57,7 @@
],
shouldSendCallback: function(data) {
// only send a fraction of errors
var sampleRate = 0.05;
var sampleRate = 0.01;
return (Math.random() <= sampleRate);
},
dataCallback: function(data) {