630 lines
21 KiB
Plaintext
630 lines
21 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
|
|
<!-- datepicker -->
|
|
<link rel="stylesheet" href="${pageContext.request.contextPath}/js/bootstrap-datepicker-1.9.0-dist/css/bootstrap-datepicker.min.css">
|
|
<script type="text/javascript" src="${pageContext.request.contextPath}/js/bootstrap-datepicker-1.9.0-dist/js/bootstrap-datepicker.min.js"></script>
|
|
<script type="text/javascript" src="${pageContext.request.contextPath}/js/bootstrap-datepicker-1.9.0-dist/locales/bootstrap-datepicker.ko.min.js"></script>
|
|
|
|
<!-- MUI + Chart.js + jQuery -->
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
<link href="https://cdn.jsdelivr.net/npm/@mui/material@5.15.14/dist/material.min.css" rel="stylesheet">
|
|
<style>
|
|
body { font-family: 'Pretendard', 'Roboto', sans-serif; background-color: #f5f6fa; margin: 0; padding: 20px; }
|
|
|
|
.chart-container {
|
|
background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
|
|
padding: 20px; margin-bottom: 20px;
|
|
}
|
|
.chart-container h3 { margin-bottom: 10px; }
|
|
|
|
.dashboard-grid {
|
|
display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 20px;
|
|
}
|
|
|
|
.card-header {
|
|
display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;
|
|
}
|
|
|
|
.dashboard-btn {
|
|
background: linear-gradient(135deg, #4285f4, #1a73e8);
|
|
color: #fff; border: none; border-radius: 20px; padding: 6px 16px;
|
|
cursor: pointer; font-weight: 600; transition: 0.3s;
|
|
}
|
|
.dashboard-btn:hover { opacity: 0.9; }
|
|
|
|
.status-item {
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
background: #fafafa; border-radius: 10px; padding: 10px 15px; margin-bottom: 8px;
|
|
}
|
|
.status-left { display: flex; align-items: center; gap: 10px; }
|
|
.status-icon {
|
|
width: 26px; height: 26px; display: flex; justify-content: center; align-items: center; border-radius: 50%;
|
|
}
|
|
.success { background-color: #e7f9ed; color: #2ecc71; }
|
|
.fail { background-color: #fdecea; color: #e74c3c; }
|
|
.delay { background-color: #eaf3fd; color: #3498db; }
|
|
.error { background-color: #fff7e6; color: #f1c40f; }
|
|
|
|
/* 통제 카드 */
|
|
.switch-container {
|
|
max-height: 260px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.api-switch {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center; /* 수직 가운데 정렬 */
|
|
background: #f8f8f8;
|
|
border-radius: 10px;
|
|
padding: 12px 15px;
|
|
margin-bottom: 10px;
|
|
gap: 12px; /* 텍스트와 스위치 사이 여백 */
|
|
}
|
|
|
|
.api-switch > div {
|
|
flex: 1; /* 왼쪽 내용이 남는 공간 차지 */
|
|
min-width: 0; /* 긴 텍스트 줄바꿈 정상화 */
|
|
}
|
|
|
|
.switch-title {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
color: #222;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.switch-desc {
|
|
font-size: 12px;
|
|
color: #777;
|
|
line-height: 1.4;
|
|
white-space: pre-line; /* \n이나 <br>을 줄바꿈으로 인식 */
|
|
}
|
|
|
|
/* 스위치 디자인 */
|
|
.mui-switch {
|
|
position: relative;
|
|
flex-shrink: 0; /* 스위치 크기 줄어들지 않게 */
|
|
display: inline-block;
|
|
width: 48px;
|
|
height: 26px;
|
|
}
|
|
|
|
.mui-switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.mui-slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ccc;
|
|
transition: 0.4s;
|
|
border-radius: 34px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: ${''}; /* 가운데 맞춤 */
|
|
}
|
|
|
|
.mui-slider:before {
|
|
position: absolute;
|
|
content: "OFF";
|
|
color: #fff;
|
|
font-size: 10px;
|
|
height: 20px;
|
|
width: 20px;
|
|
left: 3px;
|
|
bottom: 3px;
|
|
background-color: #999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 50%;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
input:checked + .mui-slider {
|
|
background-color: #4A90E2;
|
|
}
|
|
|
|
input:checked + .mui-slider:before {
|
|
transform: translateX(22px);
|
|
content: "ON";
|
|
background-color: #1A73E8;
|
|
}
|
|
|
|
/* 로그 테이블 */
|
|
.table-container {
|
|
margin-top: 25px; background: #fff; border-radius: 12px; padding: 20px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
|
|
}
|
|
table { width: 100%; border-collapse: collapse; }
|
|
thead { background: #f0f3f8; }
|
|
th, td { padding: 10px; border-bottom: 1px solid #eee; text-align: left; }
|
|
th { color: #555; font-weight: 600; }
|
|
|
|
.pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 6px;
|
|
margin-top: 15px;
|
|
}
|
|
.pagination button {
|
|
border: none;
|
|
background-color: #e2e8f0;
|
|
color: #334155;
|
|
padding: 6px 12px;
|
|
border-radius: 8px;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
.pagination button.active {
|
|
background-color: #3b82f6;
|
|
color: white;
|
|
}
|
|
.pagination button:hover:not(.active) {
|
|
background-color: #cbd5e1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- 일일 접속량 -->
|
|
<div class="chart-container">
|
|
<h3>📈 일일 접속량</h3>
|
|
<input type="text" name="chartDate" id="chartDate" class="input" placeholder="클릭하여 날짜 선택" >
|
|
<canvas id="trafficChart" height="100"></canvas>
|
|
</div>
|
|
|
|
<div class="dashboard-grid">
|
|
<!-- API 호출 현황 -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>API 호출 현황</h3>
|
|
</div>
|
|
|
|
<div class="status-item">
|
|
<div class="status-left">
|
|
<div class="status-icon success">✔</div>
|
|
<div>
|
|
<div><strong>호출 성공</strong></div>
|
|
<small>3초 이내 응답</small>
|
|
</div>
|
|
</div>
|
|
<div><strong id="successRate">0%</strong></div>
|
|
</div>
|
|
|
|
<div class="status-item">
|
|
<div class="status-left">
|
|
<div class="status-icon fail">❌</div>
|
|
<div>
|
|
<div><strong>호출 실패</strong></div>
|
|
<small>API 실패</small>
|
|
</div>
|
|
</div>
|
|
<div><strong id="failRate">0%</strong></div>
|
|
</div>
|
|
|
|
<div class="status-item">
|
|
<div class="status-left">
|
|
<div class="status-icon delay">🕓</div>
|
|
<div>
|
|
<div><strong>호출 지연</strong></div>
|
|
<small>3초 초과 지연</small>
|
|
</div>
|
|
</div>
|
|
<div><strong id="delayRate">0%</strong></div>
|
|
</div>
|
|
|
|
<div class="status-item">
|
|
<div class="status-left">
|
|
<div class="status-icon error">⚠️</div>
|
|
<div>
|
|
<div><strong>호출 오류</strong></div>
|
|
<small>오류 응답</small>
|
|
</div>
|
|
</div>
|
|
<div><strong id="errorRate">0%</strong></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 목록 -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>API 목록</h3>
|
|
<!-- <label class="mui-switch"> -->
|
|
<!-- <input type="checkbox" id="globalSwitch" onchange="toggleStatus(this)" checked> -->
|
|
<!-- <span class="mui-slider"></span> -->
|
|
<!-- </label> -->
|
|
</div>
|
|
|
|
<div class="switch-container" id="apiSwitchList">
|
|
<div class="api-switch">
|
|
<div>
|
|
<div class="switch-title">표시 할 API 목록이 존재하지 않습니다.</div>
|
|
<div class="switch-desc">API를 등록해주세요.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 로그 테이블 -->
|
|
<div class="table-container">
|
|
<h3>API 호출 로그</h3>
|
|
<table>
|
|
<colgroup>
|
|
<col style="width: 3%">
|
|
<col style="width: 7%">
|
|
<col style="width: 5%">
|
|
<col style="width: 15%">
|
|
<col style="width: auto">
|
|
<col style="width: 15%">
|
|
<col style="width: 5%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>API_KEY</th>
|
|
<th>ACCESS_ID</th>
|
|
<th>ACCESS_TYPE</th>
|
|
<th>ACCESS_TABLE</th>
|
|
<th>ACCESS_DT</th>
|
|
<th>IP_ADDRESS</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="apiLogBody">
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- 페이징 영역 -->
|
|
<div id="pagination" class="pagination"></div>
|
|
</div>
|
|
|
|
<script>
|
|
// 퍼센트 애니메이션
|
|
function animateValue(id, start, end, duration) {
|
|
const obj = document.getElementById(id);
|
|
let startTime = null;
|
|
|
|
function animation(currentTime) {
|
|
if (!startTime) startTime = currentTime;
|
|
const progress = Math.min((currentTime - startTime) / duration, 1);
|
|
obj.innerText = (progress * (end - start) + start).toFixed(1) + "%";
|
|
if (progress < 1) requestAnimationFrame(animation);
|
|
}
|
|
requestAnimationFrame(animation);
|
|
}
|
|
|
|
let trafficChart; // 전역 변수
|
|
$(document).ready(function(){
|
|
// datepicker
|
|
$("#chartDate").datepicker({
|
|
format: "yyyy-mm-dd",
|
|
language: "ko",
|
|
autoclose: true
|
|
}).datepicker("setDate", new Date());
|
|
|
|
// API 호출 현황
|
|
animateValue("successRate", 0, 100, 1500);
|
|
animateValue("failRate", 0, 0, 1500);
|
|
animateValue("delayRate", 0, 0, 1500);
|
|
animateValue("errorRate", 0, 0, 1500);
|
|
|
|
// API 목록 목록 조회
|
|
getMgmtApiList();
|
|
|
|
// API 호출로그 목록 조회
|
|
getMgmtApiLogList();
|
|
|
|
// 페이지 로드시 차트 먼저 로드
|
|
getMgmtApiChart();
|
|
|
|
// 날짜 변경 시 차트 다시 로드
|
|
$(document).on('change', '#chartDate', function() {
|
|
getMgmtApiChart();
|
|
});
|
|
});
|
|
|
|
// 외부요청 API 목록 조회
|
|
function getMgmtApiList(){
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/admins/mgmtApi/o_list.do" ,
|
|
data : {},
|
|
dataType :"json",
|
|
success : function(res){ // res.code, res.msg, res.data
|
|
if (res.code == "SUCCESS") {
|
|
let procList = res.data; //Array List
|
|
const $listContainer = $("#apiSwitchList");
|
|
$listContainer.empty(); // 기존 내용 제거
|
|
// 데이터 반복
|
|
$.each(res.data, function(i, item) {
|
|
// DOM에 추가
|
|
$listContainer.append(drawApiControlList(item));
|
|
});
|
|
} else {
|
|
alert("관리 API 목록 조회중 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
},
|
|
error : function(response){
|
|
alert("관리 API 목록 조회중 내부 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
});
|
|
}
|
|
|
|
// 개별 API 활성상태 변경
|
|
function toggleStatus(ele) { // ele => 스위치(형제요소 input 값으로 변경할 상태 Y,N 그리고 btnType을 판별한다)
|
|
let btnType = $(ele).attr('id'); // 일괄변경 버튼, 각 변경 버튼 여부(globalSwitch면 일괄변경임)
|
|
|
|
let idxArr = [];
|
|
let active = $(ele).is(":checked") ? "Y" : "N"
|
|
if (btnType == 'globalSwitch') {
|
|
$('#apiSwitchList .api-switch').each(function(i, el) {
|
|
const idx = $(el).data('idx');
|
|
idxArr.push(idx);
|
|
});
|
|
} else {
|
|
idxArr.push($(ele).parents('.api-switch').data("idx"));
|
|
}
|
|
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/admins/mgmtApi/toggleSts.do" ,
|
|
data : {idxArr:idxArr, activeYn: active},
|
|
traditional: true,
|
|
dataType :"json",
|
|
success : function(res){ // res.code, res.msg, res.data
|
|
if (res.code == "SUCCESS") {
|
|
let procList = res.data; //Array List
|
|
const $listContainer = $("#apiSwitchList");
|
|
$listContainer.empty(); // 기존 내용 제거
|
|
// 데이터 반복
|
|
$.each(res.data, function(i, item) {
|
|
// DOM에 추가
|
|
$listContainer.append(drawApiControlList(item));
|
|
});
|
|
} else {
|
|
alert("활성상태 변경 중 오류가 발생했습니다. 다시 시도해주세요");
|
|
}
|
|
},
|
|
error : function(response){
|
|
alert("활성상태 변경 중 내부 오류가 발생했습니다. 다시 시도해주세요");
|
|
}
|
|
});
|
|
}
|
|
|
|
function drawApiControlList(item) {
|
|
// activeYn 이 "Y"이면 체크 상태, 아니면 체크 해제
|
|
const isChecked = item.activeYn === "Y" ? "checked" : "";
|
|
|
|
// HTML 문자열 생성
|
|
const html = `
|
|
<div class="api-switch" data-idx="\${item.idx}">
|
|
<div>
|
|
<div class="switch-title">\${item.idx} \${item.name}</div>
|
|
<div class="switch-desc">\${item.desc.replace(/\\n/g, "<br>")}</div>
|
|
</div>
|
|
<%-- <label class="mui-switch">
|
|
<input type="checkbox" class="api-toggle" data-api="\${item.idx}" onchange="toggleStatus(this)" \${isChecked}>
|
|
<span class="mui-slider"></span>
|
|
</label>--%>
|
|
</div>
|
|
`;
|
|
return html;
|
|
}
|
|
|
|
// API 호출 로그 목록 조회
|
|
function getMgmtApiLogList(){
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/admins/mgmtApiLog/list.do" ,
|
|
data : {},
|
|
dataType :"json",
|
|
success : function(res){ // res.code, res.msg, res.data
|
|
if (res.code == "SUCCESS") {
|
|
let procList = res.data; //Array List
|
|
const $listContainer = $("#apiLogBody");
|
|
$listContainer.empty(); // 기존 내용 제거
|
|
// 데이터 반복
|
|
$.each(res.data, function(i, item) {
|
|
// DOM에 추가
|
|
$listContainer.append(drawApiLogList(item));
|
|
});
|
|
} else {
|
|
alert("API 호출 로그 목록 조회중 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
},
|
|
error : function(response){
|
|
alert("API 호출 로그 목록 조회중 내부 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
});
|
|
}
|
|
|
|
function drawApiLogList(item) {
|
|
// HTML 문자열 생성
|
|
const html = `
|
|
<tr data-idx="\${item.logSeq}">
|
|
<td>\${item.rn}</td>
|
|
<td title="\${item.apiKey}">\${item.apiKeyConcat}</td>
|
|
<td>\${item.accessId}</td>
|
|
<td>\${item.accessType}</td>
|
|
<td>\${item.accessTable}</td>
|
|
<td>\${item.accessDt}</td>
|
|
<td>\${item.ipAddress}</td>
|
|
</tr>
|
|
`;
|
|
return html;
|
|
}
|
|
|
|
|
|
// API 호출 로그 목록 조회
|
|
function getMgmtApiChart(){
|
|
var chartDate = $('#chartDate').val();
|
|
console.log($('#chartDate').val())
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/admins/mgmtApi/charts.do" ,
|
|
data : {chartDate: $('#chartDate').val()},
|
|
dataType :"json",
|
|
success : function(res){ // res.code, res.msg, res.data
|
|
if (res.code == "SUCCESS") {
|
|
const d = res.data;
|
|
|
|
// 시간대별 카운트를 배열로 변환
|
|
const chartData = [
|
|
d.count00, d.count01, d.count02, d.count03,
|
|
d.count04, d.count05, d.count06, d.count07,
|
|
d.count08, d.count09, d.count10, d.count11,
|
|
d.count12, d.count13, d.count14, d.count15,
|
|
d.count16, d.count17, d.count18, d.count19,
|
|
d.count20, d.count21, d.count22, d.count23
|
|
];
|
|
|
|
drawTrafficChart(chartData);
|
|
} else {
|
|
alert("API 호출 로그 목록 조회중 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
},
|
|
error : function(response){
|
|
alert("API 호출 로그 목록 조회중 내부 오류가 발생하였습니다. 다시 시도해주세요.");
|
|
}
|
|
});
|
|
}
|
|
// Chart.js: 일일 접속량
|
|
function drawTrafficChart(dataArr) {
|
|
const ctx = document.getElementById('trafficChart').getContext('2d');
|
|
const labels = [
|
|
'00시','01시','02시','03시','04시','05시','06시','07시','08시','09시','10시','11시',
|
|
'12시','13시','14시','15시','16시','17시','18시','19시','20시','21시','22시','23시'
|
|
];
|
|
|
|
// 이미 차트가 있으면 갱신
|
|
if (trafficChart) {
|
|
trafficChart.data.datasets[0].data = dataArr;
|
|
trafficChart.update();
|
|
return;
|
|
}
|
|
|
|
// 최초 생성
|
|
trafficChart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
labels: labels,
|
|
datasets: [{
|
|
data: dataArr,
|
|
borderColor: '#4285f4',
|
|
tension: 0.4,
|
|
fill: true,
|
|
backgroundColor: 'rgba(66,133,244,0.1)',
|
|
pointRadius: 3
|
|
}]
|
|
},
|
|
options: {
|
|
plugins: { legend: { display: false } },
|
|
scales: {
|
|
y: {
|
|
beginAtZero: true,
|
|
ticks: { stepSize: 1 }
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 날짜형식 YYYYMMDDHHMI -> YYYY-MM-DD HH:MI
|
|
*/
|
|
function formatDateTime(raw) {
|
|
if (!raw || raw.length !== 12) return "";
|
|
return (
|
|
raw.slice(0, 4) + "-" +
|
|
raw.slice(4, 6) + "-" +
|
|
raw.slice(6, 8) + " " +
|
|
raw.slice(8, 10) + ":" +
|
|
raw.slice(10, 12)
|
|
);
|
|
}
|
|
|
|
// 예시 데이터 (100개 생성)
|
|
// const apiLogs = Array.from({ length: 100 }, (_, i) => ({
|
|
// api: i % 2 === 0 ? "/API_CHA_085/request" : "/API_BH_020/dc332",
|
|
// method: ["GET", "POST", "PUT"][Math.floor(Math.random() * 3)],
|
|
// params: `subCode=test${i}&prvcCode=x${i}`,
|
|
// status: [ "200 OK", "404 NOT FOUND", "500 INTERNAL ERROR" ][Math.floor(Math.random() * 3)],
|
|
// time: Math.floor(Math.random() * 500),
|
|
// result: ["성공", "지연", "실패"][Math.floor(Math.random() * 3)]
|
|
// }));
|
|
|
|
// const rowsPerPage = 10;
|
|
// let currentPage = 1;
|
|
|
|
// function renderTable(page) {
|
|
// const tableBody = document.getElementById("apiLogBody");
|
|
// tableBody.innerHTML = "";
|
|
|
|
// const start = (page - 1) * rowsPerPage;
|
|
// const end = start + rowsPerPage;
|
|
// const pageData = apiLogs.slice(start, end);
|
|
|
|
// pageData.forEach(row => {
|
|
// const tr = document.createElement("tr");
|
|
// tr.innerHTML += '<td>' + row.api + '</td><td>' + row.method + '</td><td>' + row.params + '</td><td>' + row.status + '</td><td>' + row.time + '</td><td>' + getResultIcon(row.result) + ' ' +row.result + '</td>';
|
|
// tableBody.appendChild(tr);
|
|
// });
|
|
// }
|
|
|
|
// function renderPagination() {
|
|
// const totalPages = Math.ceil(apiLogs.length / rowsPerPage);
|
|
// const pagination = document.getElementById("pagination");
|
|
// pagination.innerHTML = "";
|
|
|
|
// for (let i = 1; i <= totalPages; i++) {
|
|
// const btn = document.createElement("button");
|
|
// btn.textContent = i;
|
|
// if (i === currentPage) btn.classList.add("active");
|
|
// btn.addEventListener("click", () => {
|
|
// currentPage = i;
|
|
// renderTable(currentPage);
|
|
// renderPagination();
|
|
// });
|
|
// pagination.appendChild(btn);
|
|
// }
|
|
// }
|
|
|
|
// function getResultIcon(result) {
|
|
// if (result === "성공")
|
|
// return `<span style="color:#22c55e;">✔</span>`;
|
|
// if (result === "실패")
|
|
// return `<span style="color:#ef4444;">⚠</span>`;
|
|
// if (result === "지연")
|
|
// return `<span style="color:#3b82f6;">⏱</span>`;
|
|
// return "";
|
|
// }
|
|
|
|
// 초기 렌더링
|
|
// renderTable(currentPage);
|
|
// renderPagination();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|