Skip to content

Commit

Permalink
fix(sampling): use a pessimistic starting rate
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyke committed Nov 17, 2015
1 parent 9682597 commit 67bff9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/providers/httpTransaction/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function HttpTransaction(eventBus, options) {

this.apiKey = options.apiKey;
this.collectInterval = options.collectInterval;
this.sampleRate = 1;
this.sampleRate = 50;
this.sampleSize = options.sampleSize;
this.partials = {};
this.traces = [];
Expand Down

0 comments on commit 67bff9e

Please sign in to comment.