유량제어 모니터링

This commit is contained in:
eastargh
2026-06-09 13:04:32 +09:00
parent 06ad1230b2
commit c8caeeda8c
@@ -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();