From e2cdde10ccb2501cfea8f1d4a7b4edada569fd5e Mon Sep 17 00:00:00 2001 From: Andre Onuki Date: Fri, 14 Oct 2022 09:49:48 -0400 Subject: [PATCH] NEWRELIC-4447 - Increase the Custom Event Reservoir Limit --- .../main/java/com/newrelic/agent/config/InsightsConfigImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newrelic-agent/src/main/java/com/newrelic/agent/config/InsightsConfigImpl.java b/newrelic-agent/src/main/java/com/newrelic/agent/config/InsightsConfigImpl.java index 011a9737a5..4de4e037ab 100644 --- a/newrelic-agent/src/main/java/com/newrelic/agent/config/InsightsConfigImpl.java +++ b/newrelic-agent/src/main/java/com/newrelic/agent/config/InsightsConfigImpl.java @@ -12,7 +12,7 @@ public class InsightsConfigImpl extends BaseConfig implements InsightsConfig { public static final String MAX_SAMPLES_STORED_PROP = "max_samples_stored"; - public static final int DEFAULT_MAX_SAMPLES_STORED = 10000; + public static final int DEFAULT_MAX_SAMPLES_STORED = 30000; public static final String ENABLED_PROP = "enabled"; public static final boolean DEFAULT_ENABLED = true; public static final String SYSTEM_PROPERTY_ROOT = "newrelic.config.custom_insights_events.";