[PR #9] [MERGED] Monitoring #322

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

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/9
Author: @manikanta9176
Created: 3/20/2025
Status: Merged
Merged: 3/20/2025
Merged by: @manikanta9176

Base: mainHead: monitoring


📝 Commits (10+)

  • bd1de5c chore: added monitoring tab
  • ebfdf03 chore: updated the monitoring ui
  • bfc7b32 chore: updated the charts ui
  • 843ab34 chore: added netdata core commands
  • def5f21 chore: checking netdata installed or not
  • e94ed0b chore: updated netdata install and uninstall
  • 818eded chore: added netdata api calls
  • 8f01fc6 chore: api to get all the metrics
  • 27c9492 chore: integrated the data
  • 4b52d18 Merge branch 'main' into monitoring

📊 Changes

66 files changed (+5698 additions, -2 deletions)

View changed files

📝 package.json (+4 -0)
📝 pnpm-lock.yaml (+352 -0)
src/actions/netdata/index.ts (+117 -0)
src/actions/netdata/validator.ts (+13 -0)
📝 src/app/(frontend)/(dashboard)/settings/servers/[id]/layout.client.tsx (+1 -1)
📝 src/app/(frontend)/(dashboard)/settings/servers/[id]/page.tsx (+48 -1)
📝 src/app/(frontend)/globals.css (+6 -0)
src/components/servers/Monitoring.tsx (+2152 -0)
src/components/servers/NetdataInstallPrompt.tsx (+50 -0)
src/components/servers/RetryPrompt.tsx (+33 -0)
src/components/ui/chart.tsx (+365 -0)
src/components/ui/progress.tsx (+28 -0)
src/components/ui/tabs.tsx (+55 -0)
src/lib/netdata/alerts/getAlarmCount.ts (+11 -0)
src/lib/netdata/alerts/getAlarmLog.ts (+11 -0)
src/lib/netdata/alerts/getAlarmVariables.ts (+17 -0)
src/lib/netdata/alerts/getAlarms.ts (+11 -0)
src/lib/netdata/alerts/getAlarmsValues.ts (+13 -0)
src/lib/netdata/alerts/index.ts (+5 -0)
src/lib/netdata/badges/getBadge.ts (+24 -0)

...and 46 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/9 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 3/20/2025 **Status:** ✅ Merged **Merged:** 3/20/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `monitoring` --- ### 📝 Commits (10+) - [`bd1de5c`](https://github.com/dflow-sh/dflow/commit/bd1de5c480fe35f9fb66acaffb58bdfd7741f1b7) chore: added monitoring tab - [`ebfdf03`](https://github.com/dflow-sh/dflow/commit/ebfdf03da59ee1cffa517f4d4535a29548510b16) chore: updated the monitoring ui - [`bfc7b32`](https://github.com/dflow-sh/dflow/commit/bfc7b322881191263d7cae9a8edf1b1bcc8a8acc) chore: updated the charts ui - [`843ab34`](https://github.com/dflow-sh/dflow/commit/843ab3423862659019fec43b1f82af5c35634b5f) chore: added netdata core commands - [`def5f21`](https://github.com/dflow-sh/dflow/commit/def5f21321c1031be632a6b2399bd5afcb2b59a0) chore: checking netdata installed or not - [`e94ed0b`](https://github.com/dflow-sh/dflow/commit/e94ed0bcbbddbfe3b7d0d6ebd9d7a15a523bf2f4) chore: updated netdata install and uninstall - [`818eded`](https://github.com/dflow-sh/dflow/commit/818edede59f3e25c631faea4646fa51484b36fec) chore: added netdata api calls - [`8f01fc6`](https://github.com/dflow-sh/dflow/commit/8f01fc67c8cbadfb688285fc5ec59a335a847ed4) chore: api to get all the metrics - [`27c9492`](https://github.com/dflow-sh/dflow/commit/27c9492aa3d81ea2d347ee0f9bb02f128e8b492b) chore: integrated the data - [`4b52d18`](https://github.com/dflow-sh/dflow/commit/4b52d1883340e8c16c0d4b59abadae1a94170db2) Merge branch 'main' into monitoring ### 📊 Changes **66 files changed** (+5698 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+4 -0) 📝 `pnpm-lock.yaml` (+352 -0) ➕ `src/actions/netdata/index.ts` (+117 -0) ➕ `src/actions/netdata/validator.ts` (+13 -0) 📝 `src/app/(frontend)/(dashboard)/settings/servers/[id]/layout.client.tsx` (+1 -1) 📝 `src/app/(frontend)/(dashboard)/settings/servers/[id]/page.tsx` (+48 -1) 📝 `src/app/(frontend)/globals.css` (+6 -0) ➕ `src/components/servers/Monitoring.tsx` (+2152 -0) ➕ `src/components/servers/NetdataInstallPrompt.tsx` (+50 -0) ➕ `src/components/servers/RetryPrompt.tsx` (+33 -0) ➕ `src/components/ui/chart.tsx` (+365 -0) ➕ `src/components/ui/progress.tsx` (+28 -0) ➕ `src/components/ui/tabs.tsx` (+55 -0) ➕ `src/lib/netdata/alerts/getAlarmCount.ts` (+11 -0) ➕ `src/lib/netdata/alerts/getAlarmLog.ts` (+11 -0) ➕ `src/lib/netdata/alerts/getAlarmVariables.ts` (+17 -0) ➕ `src/lib/netdata/alerts/getAlarms.ts` (+11 -0) ➕ `src/lib/netdata/alerts/getAlarmsValues.ts` (+13 -0) ➕ `src/lib/netdata/alerts/index.ts` (+5 -0) ➕ `src/lib/netdata/badges/getBadge.ts` (+24 -0) _...and 46 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:23 +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#322
No description provided.