From e7b7dd27f8dbbfbf1dde5a94a3433b93046366b6 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 4 Feb 2026 17:49:39 +0900 Subject: [PATCH] =?UTF-8?q?OBP=20GwMetric=20=EC=A1=B0=ED=9A=8C=EB=B2=94?= =?UTF-8?q?=EC=9C=84=20=EC=A0=9C=ED=95=9C=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/eactive/ext/kjb/common/KjbProperty.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/com/eactive/ext/kjb/common/KjbProperty.java b/src/main/java/com/eactive/ext/kjb/common/KjbProperty.java index 1ff81e6..554da7b 100644 --- a/src/main/java/com/eactive/ext/kjb/common/KjbProperty.java +++ b/src/main/java/com/eactive/ext/kjb/common/KjbProperty.java @@ -183,6 +183,14 @@ public class KjbProperty { private String apiAllowIpList = "10.15.106.*, 10.14.8.*, 10.15.8.*, 192.168.240.*, 127.0.0.1, 192.168.132.*, 192.168.131.*"; + @KjbPropertyValue( + key = "kjb.api_gw_metric.page_size", + description = "API GW Metric 조회시 페이지 크기 설정 (Integer, 0 = 무한, 기본값 10000)", + defaultValue = "10000" + ) + private Integer apiGwMetricPageSize = 10000; + + public String toJsonString(boolean isPretty) { return isPretty ? new GsonBuilder().setPrettyPrinting().create().toJson(this)