diff --git a/src/main/webapp/scripts/directives/scatter.js b/src/main/webapp/scripts/directives/scatter.js index 9b1f9f90e..347766dd3 100644 --- a/src/main/webapp/scripts/directives/scatter.js +++ b/src/main/webapp/scripts/directives/scatter.js @@ -7,7 +7,7 @@ pinpointApp.constant('scatterConfig', { }, useIntervalForFetching: false, nFetchingInterval: 2000, - nFetchLimit: 3 + nFetchLimit: 5000 }); // FIXME child window에서 접근할 수 있도록 global변수로 일단 빼둠. 나중에 리팩토링할 것. diff --git a/src/main/webapp/scripts/directives/serverMap.js b/src/main/webapp/scripts/directives/serverMap.js index 84d8fac10..08a6d8469 100644 --- a/src/main/webapp/scripts/directives/serverMap.js +++ b/src/main/webapp/scripts/directives/serverMap.js @@ -30,7 +30,7 @@ pinpointApp.constant('serverMapConfig', { }, FILTER_DELIMETER: "^", FILTER_ENTRY_DELIMETER: "|", - FILTER_FETCH_LIMIT: 5 + FILTER_FETCH_LIMIT: 5000 }); pinpointApp.directive('serverMap', [ 'serverMapConfig', '$rootScope', '$window', 'Alerts', 'ProgressBar', 'encodeURIComponentFilter', function (cfg, $rootScope, $window, Alerts, ProgressBar, encodeURIComponentFilter) {