[PR #952] [MERGED] feat: nginx performance dashboard #6938

Closed
opened 2026-03-01 17:15:00 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/0xJacky/nginx-ui/pull/952
Author: @akinoccc
Created: 4/10/2025
Status: Merged
Merged: 4/10/2025
Merged by: @0xJacky

Base: devHead: dev


📝 Commits (5)

  • 4e8346f feat: add nginx detail status
  • 9f0107e Merge branch '0xJacky:dev' into dev
  • 32d7c74 enhance: remove unused log and improve loading style
  • 2d0961f feat: added status check and control functions for the Nginx stub_status module and optimized the performance data acquisition logic
  • 6cb7940 Merge branch '0xJacky:dev' into dev

📊 Changes

23 files changed (+1791 additions, -47 deletions)

View changed files

📝 api/nginx/control.go (+3 -7)
📝 api/nginx/router.go (+8 -0)
api/nginx/status.go (+132 -0)
📝 app/src/api/ngx.ts (+22 -0)
📝 app/src/components/EnvGroupTabs/EnvGroupTabs.vue (+17 -35)
app/src/composables/useNginxPerformance.ts (+88 -0)
app/src/composables/usePerformanceMetrics.ts (+194 -0)
app/src/composables/useSSE.ts (+91 -0)
📝 app/src/lib/http/interceptors.ts (+4 -3)
📝 app/src/routes/modules/dashboard.ts (+19 -1)
📝 app/src/version.json (+1 -1)
app/src/views/dashboard/NginxDashBoard.vue (+220 -0)
📝 app/src/views/dashboard/ServerDashBoard.vue (+0 -0)
app/src/views/dashboard/components/ConnectionMetricsCard.vue (+64 -0)
app/src/views/dashboard/components/PerformanceStatisticsCard.vue (+107 -0)
app/src/views/dashboard/components/PerformanceTablesCard.vue (+211 -0)
app/src/views/dashboard/components/ProcessDistributionCard.vue (+60 -0)
app/src/views/dashboard/components/ResourceUsageCard.vue (+61 -0)
internal/nginx/config_info.go (+48 -0)
📝 internal/nginx/nginx.go (+9 -0)

...and 3 more files

📄 Description

#850 (WIP)
Close #738


🔄 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/0xJacky/nginx-ui/pull/952 **Author:** [@akinoccc](https://github.com/akinoccc) **Created:** 4/10/2025 **Status:** ✅ Merged **Merged:** 4/10/2025 **Merged by:** [@0xJacky](https://github.com/0xJacky) **Base:** `dev` ← **Head:** `dev` --- ### 📝 Commits (5) - [`4e8346f`](https://github.com/0xJacky/nginx-ui/commit/4e8346f04e4b88c5a9f7786cc8bcf549d13d8643) feat: add nginx detail status - [`9f0107e`](https://github.com/0xJacky/nginx-ui/commit/9f0107eeedb0c3deaa1e3be7b25c754b27f9a5c3) Merge branch '0xJacky:dev' into dev - [`32d7c74`](https://github.com/0xJacky/nginx-ui/commit/32d7c748353cf5a245353c9e0853fce7a5bda91f) enhance: remove unused log and improve loading style - [`2d0961f`](https://github.com/0xJacky/nginx-ui/commit/2d0961f1a3426a91d148a8ad63cf99fe79d95351) feat: added status check and control functions for the Nginx stub_status module and optimized the performance data acquisition logic - [`6cb7940`](https://github.com/0xJacky/nginx-ui/commit/6cb7940e9ba73e1e4d216be9438f1d63dfeecb0f) Merge branch '0xJacky:dev' into dev ### 📊 Changes **23 files changed** (+1791 additions, -47 deletions) <details> <summary>View changed files</summary> 📝 `api/nginx/control.go` (+3 -7) 📝 `api/nginx/router.go` (+8 -0) ➕ `api/nginx/status.go` (+132 -0) 📝 `app/src/api/ngx.ts` (+22 -0) 📝 `app/src/components/EnvGroupTabs/EnvGroupTabs.vue` (+17 -35) ➕ `app/src/composables/useNginxPerformance.ts` (+88 -0) ➕ `app/src/composables/usePerformanceMetrics.ts` (+194 -0) ➕ `app/src/composables/useSSE.ts` (+91 -0) 📝 `app/src/lib/http/interceptors.ts` (+4 -3) 📝 `app/src/routes/modules/dashboard.ts` (+19 -1) 📝 `app/src/version.json` (+1 -1) ➕ `app/src/views/dashboard/NginxDashBoard.vue` (+220 -0) 📝 `app/src/views/dashboard/ServerDashBoard.vue` (+0 -0) ➕ `app/src/views/dashboard/components/ConnectionMetricsCard.vue` (+64 -0) ➕ `app/src/views/dashboard/components/PerformanceStatisticsCard.vue` (+107 -0) ➕ `app/src/views/dashboard/components/PerformanceTablesCard.vue` (+211 -0) ➕ `app/src/views/dashboard/components/ProcessDistributionCard.vue` (+60 -0) ➕ `app/src/views/dashboard/components/ResourceUsageCard.vue` (+61 -0) ➕ `internal/nginx/config_info.go` (+48 -0) 📝 `internal/nginx/nginx.go` (+9 -0) _...and 3 more files_ </details> ### 📄 Description #850 (WIP) Close #738 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 17:15:00 +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/nginx-ui#6938
No description provided.