From bb76c82ea254a93ae47803422480086608fd6cbe Mon Sep 17 00:00:00 2001 From: mirackara Date: Tue, 16 Aug 2022 11:43:16 -0500 Subject: [PATCH] Custom Events Harvest Limit Increase --- v3/internal/limits.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/internal/limits.go b/v3/internal/limits.go index a7becf544..b0f8228ec 100644 --- a/v3/internal/limits.go +++ b/v3/internal/limits.go @@ -15,7 +15,7 @@ const ( MaxPayloadSizeInBytes = 1000 * 1000 // MaxCustomEvents is the maximum number of Transaction Events that can be captured // per 60-second harvest cycle - MaxCustomEvents = 10 * 1000 + MaxCustomEvents = 30 * 1000 // MaxLogEvents is the maximum number of Log Events that can be captured per // 60-second harvest cycle MaxLogEvents = 10 * 1000