OBP GwMetric 조회범위 제한 설정

This commit is contained in:
Rinjae
2026-02-04 17:49:39 +09:00
parent f917df13cb
commit e7b7dd27f8
@@ -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)