[PR #26] [MERGED] Detailed graphs #328

Closed
opened 2026-03-03 11:29:24 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/26
Author: @manikanta9176
Created: 4/2/2025
Status: Merged
Merged: 4/2/2025
Merged by: @manikanta9176

Base: mainHead: detailed-graphs


📝 Commits (10+)

  • 38d3a9d chore: updated the apis
  • 13caf6e fix: old apis
  • dc99611 fix: util file types
  • a77ed6d chore: updated cpu metrics apis
  • 3720795 chore: updated memory metrics apis
  • 68df6fd chore: updated network metric apis
  • 8e6cc8e chore: updated system metrics apis
  • e3f2b51 chore: updated server status apis
  • 7e258c7 chore: updates diskmetrics apis
  • dff3b04 chore: updated overview tab

📊 Changes

31 files changed (+2779 additions, -1945 deletions)

View changed files

📝 package.json (+1 -0)
📝 pnpm-lock.yaml (+33 -0)
📝 src/app/(frontend)/globals.css (+10 -5)
📝 src/components/servers/monitoring/CPUTab.tsx (+342 -201)
📝 src/components/servers/monitoring/CurrentResourceUsage.tsx (+70 -19)
📝 src/components/servers/monitoring/DiskTab.tsx (+172 -316)
📝 src/components/servers/monitoring/MemoryTab.tsx (+221 -218)
📝 src/components/servers/monitoring/Monitoring.tsx (+14 -84)
📝 src/components/servers/monitoring/MonitoringTabs.tsx (+51 -72)
📝 src/components/servers/monitoring/NetdataInstallPrompt.tsx (+5 -3)
📝 src/components/servers/monitoring/NetworkTab.tsx (+235 -262)
📝 src/components/servers/monitoring/OverviewTab.tsx (+107 -187)
📝 src/components/servers/monitoring/StatusOverView.tsx (+99 -24)
📝 src/components/servers/monitoring/getTimeRange.ts (+18 -15)
src/components/ui/hover-card.tsx (+29 -0)
📝 src/lib/netdata/metrics/cpuMetrics.ts (+126 -116)
📝 src/lib/netdata/metrics/dashboard.ts (+34 -24)
📝 src/lib/netdata/metrics/diskMetrics.ts (+215 -69)
📝 src/lib/netdata/metrics/getServerDetails.ts (+1 -1)
📝 src/lib/netdata/metrics/index.ts (+19 -7)

...and 11 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/26 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 4/2/2025 **Status:** ✅ Merged **Merged:** 4/2/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `detailed-graphs` --- ### 📝 Commits (10+) - [`38d3a9d`](https://github.com/dflow-sh/dflow/commit/38d3a9d142f86639796c5b30dc2c7e208386ef5f) chore: updated the apis - [`13caf6e`](https://github.com/dflow-sh/dflow/commit/13caf6e8735215b98506c798568a519b95e9204c) fix: old apis - [`dc99611`](https://github.com/dflow-sh/dflow/commit/dc9961102442ca69dbf4370a8b0bb15da8619ae8) fix: util file types - [`a77ed6d`](https://github.com/dflow-sh/dflow/commit/a77ed6d92f1f53ecc566b881641cd8e423bf045c) chore: updated cpu metrics apis - [`3720795`](https://github.com/dflow-sh/dflow/commit/372079548c1be18dbbe8f000fb31978d1e853e85) chore: updated memory metrics apis - [`68df6fd`](https://github.com/dflow-sh/dflow/commit/68df6fda3ef92377efa91ac8ed0447fd6a8ef0d5) chore: updated network metric apis - [`8e6cc8e`](https://github.com/dflow-sh/dflow/commit/8e6cc8e805f2a6d38998e0b359d9073a112f661b) chore: updated system metrics apis - [`e3f2b51`](https://github.com/dflow-sh/dflow/commit/e3f2b5177802529b5e66e810ffba34af0183563b) chore: updated server status apis - [`7e258c7`](https://github.com/dflow-sh/dflow/commit/7e258c7ab6a932317a205778c2e478cd9ab9d8d9) chore: updates diskmetrics apis - [`dff3b04`](https://github.com/dflow-sh/dflow/commit/dff3b0459de4a4da9d0a1f0713f84725abf3864b) chore: updated overview tab ### 📊 Changes **31 files changed** (+2779 additions, -1945 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -0) 📝 `pnpm-lock.yaml` (+33 -0) 📝 `src/app/(frontend)/globals.css` (+10 -5) 📝 `src/components/servers/monitoring/CPUTab.tsx` (+342 -201) 📝 `src/components/servers/monitoring/CurrentResourceUsage.tsx` (+70 -19) 📝 `src/components/servers/monitoring/DiskTab.tsx` (+172 -316) 📝 `src/components/servers/monitoring/MemoryTab.tsx` (+221 -218) 📝 `src/components/servers/monitoring/Monitoring.tsx` (+14 -84) 📝 `src/components/servers/monitoring/MonitoringTabs.tsx` (+51 -72) 📝 `src/components/servers/monitoring/NetdataInstallPrompt.tsx` (+5 -3) 📝 `src/components/servers/monitoring/NetworkTab.tsx` (+235 -262) 📝 `src/components/servers/monitoring/OverviewTab.tsx` (+107 -187) 📝 `src/components/servers/monitoring/StatusOverView.tsx` (+99 -24) 📝 `src/components/servers/monitoring/getTimeRange.ts` (+18 -15) ➕ `src/components/ui/hover-card.tsx` (+29 -0) 📝 `src/lib/netdata/metrics/cpuMetrics.ts` (+126 -116) 📝 `src/lib/netdata/metrics/dashboard.ts` (+34 -24) 📝 `src/lib/netdata/metrics/diskMetrics.ts` (+215 -69) 📝 `src/lib/netdata/metrics/getServerDetails.ts` (+1 -1) 📝 `src/lib/netdata/metrics/index.ts` (+19 -7) _...and 11 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:29:24 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#328
No description provided.