From 67bff9e8ed6d0821433b633bbb8890abbdb999b1 Mon Sep 17 00:00:00 2001 From: Gergely Nemeth Date: Tue, 17 Nov 2015 14:29:56 +0100 Subject: [PATCH] fix(sampling): use a pessimistic starting rate --- lib/providers/httpTransaction/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/providers/httpTransaction/index.js b/lib/providers/httpTransaction/index.js index a5bb10f..2fe19f1 100644 --- a/lib/providers/httpTransaction/index.js +++ b/lib/providers/httpTransaction/index.js @@ -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 = [];