mirror of
https://github.com/mblanke/Dashboard.git
synced 2026-03-01 12:10:20 -05:00
fix: use real Grafana dashboard UIDs instead of placeholders
- server-overview -> docker-containers (panel 1: Running Containers) - docker-monitoring -> docker-containers (panel 10: CPU Over Time) - llm-monitoring -> rag-pipeline (panel 8: Files Processed Over Time) - system-metrics -> atlas-rag-eval (panel 7: Query Latency)
This commit is contained in:
@@ -179,8 +179,8 @@ export default function Home() {
|
||||
<UnifiWidget />
|
||||
<SynologyWidget />
|
||||
<GrafanaWidget
|
||||
title="Server Stats"
|
||||
dashboardUid="server-overview"
|
||||
title="Docker Containers"
|
||||
dashboardUid="docker-containers"
|
||||
panelId={1}
|
||||
/>
|
||||
</div>
|
||||
@@ -188,19 +188,19 @@ export default function Home() {
|
||||
{/* Grafana Dashboards */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
|
||||
<GrafanaWidget
|
||||
title="Docker Stats"
|
||||
dashboardUid="docker-monitoring"
|
||||
panelId={2}
|
||||
title="Container CPU"
|
||||
dashboardUid="docker-containers"
|
||||
panelId={10}
|
||||
/>
|
||||
<GrafanaWidget
|
||||
title="LLM Metrics"
|
||||
dashboardUid="llm-monitoring"
|
||||
panelId={3}
|
||||
title="RAG Pipeline"
|
||||
dashboardUid="rag-pipeline"
|
||||
panelId={8}
|
||||
/>
|
||||
<GrafanaWidget
|
||||
title="System Load"
|
||||
dashboardUid="system-metrics"
|
||||
panelId={4}
|
||||
title="RAG Eval"
|
||||
dashboardUid="atlas-rag-eval"
|
||||
panelId={7}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user