유량제어 모니터링
This commit is contained in:
@@ -194,19 +194,6 @@ function renderBucketStatus(servers) {
|
||||
$('#summaryThresholdWrap').hide();
|
||||
}
|
||||
|
||||
// 활성 API 정보 표시
|
||||
var activeApis = interfaceList.filter(function(item) {
|
||||
return item.useYn === '1' || item.useYn === undefined;
|
||||
});
|
||||
$('#summaryActiveApi').html(activeApis.length + '<span class="unit">개</span>');
|
||||
if (activeApis.length > 0) {
|
||||
var apiIds = activeApis.map(function(item) { return item.interfaceId; });
|
||||
var displayText = apiIds.length <= 3 ? apiIds.join(', ') : apiIds.slice(0, 3).join(', ') + ' 외 ' + (apiIds.length - 3) + '개';
|
||||
$('#summaryActiveApiList').text(displayText);
|
||||
} else {
|
||||
$('#summaryActiveApiList').text('');
|
||||
}
|
||||
|
||||
$('#bucketSummary').show();
|
||||
} else {
|
||||
$('#bucketSummary').hide();
|
||||
|
||||
Reference in New Issue
Block a user