24 lines
645 B
TypeScript
24 lines
645 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import MonitoringDashboard from "@/components/admin/MonitoringDashboard";
|
|
|
|
export default function MonitoringPage() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50">
|
|
<div className="w-full max-w-none px-4 py-8 space-y-8">
|
|
{/* 헤더 */}
|
|
<div>
|
|
<h1 className="text-2xl font-bold">모니터링</h1>
|
|
<p className="text-muted-foreground">
|
|
배치 작업 실행 상태를 실시간으로 모니터링합니다.
|
|
</p>
|
|
</div>
|
|
|
|
{/* 모니터링 대시보드 */}
|
|
<MonitoringDashboard />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|