-
트래픽 속도 추이 (IN/OUT Kbit/s)
+
= $viewDatas['entity']->getCustomTitle() ?>트래픽 속도 추이 (IN/OUT Kbit/s)
-
-
+
@@ -84,12 +65,10 @@
데이터를 불러오는 중입니다... 잠시만 기다려 주세요.
-
데이터를 불러오는데 실패했습니다. (서버 오류)
-
선택하신 기간에는 조회된 트래픽 데이터가 없습니다. 기간을 다시 설정해주세요.
@@ -127,9 +106,9 @@
const endpoint = `${baseEndpoint}?${params.toString()}`;
// ** 디버깅: 요청 정보 로깅 **
- console.log("--- API 요청 시작 (Debugging) ---");
- console.log(`요청 기간: ${startDate} ~ ${endDate}`);
- console.log(`요청 URL: ${endpoint}`);
+ // console.log("--- API 요청 시작 (Debugging) ---");
+ // console.log(`요청 기간: ${startDate} ~ ${endDate}`);
+ // console.log(`요청 URL: ${endpoint}`);
const maxRetries = 3;
let delay = 1000;
@@ -147,8 +126,8 @@
const result = await response.json();
// ** 디버깅: 서버 응답 로깅 **
- console.log("서버 응답 JSON (Raw Result):", result);
- console.log("--- API 요청 종료 (Debugging) ---");
+ // console.log("서버 응답 JSON (Raw Result):", result);
+ // console.log("--- API 요청 종료 (Debugging) ---");
if (result.status === 'error') {
@@ -183,7 +162,6 @@
const endDate = document.getElementById('endDate').value;
const chartTitleElement = document.getElementById('chartTitle');
- const dateRangeInfoElement = document.getElementById('dateRangeInfo');
const loadingIndicator = document.getElementById('loadingIndicator');
const errorMessage = document.getElementById('errorMessage');
const noDataMessage = document.getElementById('noDataMessage');
@@ -199,8 +177,6 @@
// 제목 및 기간 정보 업데이트
chartTitleElement.textContent = `트래픽 속도 추이 (IN/OUT Kbit/s)`;
- dateRangeInfoElement.textContent = `기간: ${startDate} 부터 ${endDate} 까지`;
-
try {
const aggregatedData = await fetchAggregatedData(startDate, endDate);