[PR #3207] [MERGED] [client] Add UI client event notifications #16740

Closed
opened 2026-08-05 04:06:29 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/3207
Author: @lixmal
Created: 1/17/2025
Status: Merged
Merged: 2/20/2025
Merged by: @lixmal

Base: mainHead: ui-event-notifications


📝 Commits (8)

  • ee614a0 Add event notifications
  • a84712c Add disable notifications setting
  • af19548 Add events to status
  • 5bb6640 Enable running check
  • bcaf4c1 Anonymize events
  • e7455e2 Merge branch 'main' into ui-event-notifications
  • 832a23d Merge branch 'main' into ui-event-notifications
  • 2be3322 Remove return

📊 Changes

14 files changed (+1683 additions, -573 deletions)

View changed files

📝 client/cmd/status.go (+15 -20)
client/cmd/status_event.go (+69 -0)
📝 client/cmd/status_test.go (+5 -23)
📝 client/internal/config.go (+14 -0)
📝 client/internal/dns/upstream.go (+9 -0)
📝 client/internal/peer/status.go (+125 -0)
📝 client/internal/routemanager/client.go (+70 -6)
📝 client/proto/daemon.pb.go (+982 -512)
📝 client/proto/daemon.proto (+42 -0)
📝 client/proto/daemon_grpc.pb.go (+101 -1)
client/server/event.go (+36 -0)
📝 client/server/server.go (+18 -11)
📝 client/ui/client_ui.go (+46 -0)
client/ui/event/event.go (+151 -0)

📄 Description

Describe your changes

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 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/netbirdio/netbird/pull/3207 **Author:** [@lixmal](https://github.com/lixmal) **Created:** 1/17/2025 **Status:** ✅ Merged **Merged:** 2/20/2025 **Merged by:** [@lixmal](https://github.com/lixmal) **Base:** `main` ← **Head:** `ui-event-notifications` --- ### 📝 Commits (8) - [`ee614a0`](https://github.com/netbirdio/netbird/commit/ee614a0105ae5ab6fcbbf501645fbdc104868284) Add event notifications - [`a84712c`](https://github.com/netbirdio/netbird/commit/a84712ccd449922c7736cf2885c5859a263c750a) Add disable notifications setting - [`af19548`](https://github.com/netbirdio/netbird/commit/af195481c867b7b875532f86e5420b2387e7e2de) Add events to status - [`5bb6640`](https://github.com/netbirdio/netbird/commit/5bb6640259c1ebf1889a6b333b244e3f709f0124) Enable running check - [`bcaf4c1`](https://github.com/netbirdio/netbird/commit/bcaf4c128d97c05e6dd11274d30b0889349bf6d2) Anonymize events - [`e7455e2`](https://github.com/netbirdio/netbird/commit/e7455e2f2981dc1e46414c5382e9ee03ba7b6263) Merge branch 'main' into ui-event-notifications - [`832a23d`](https://github.com/netbirdio/netbird/commit/832a23d7010fe1f95056517f13b1aaa7702ddad3) Merge branch 'main' into ui-event-notifications - [`2be3322`](https://github.com/netbirdio/netbird/commit/2be3322a479f5139d98447cc4a4fd8c8e18a5303) Remove return ### 📊 Changes **14 files changed** (+1683 additions, -573 deletions) <details> <summary>View changed files</summary> 📝 `client/cmd/status.go` (+15 -20) ➕ `client/cmd/status_event.go` (+69 -0) 📝 `client/cmd/status_test.go` (+5 -23) 📝 `client/internal/config.go` (+14 -0) 📝 `client/internal/dns/upstream.go` (+9 -0) 📝 `client/internal/peer/status.go` (+125 -0) 📝 `client/internal/routemanager/client.go` (+70 -6) 📝 `client/proto/daemon.pb.go` (+982 -512) 📝 `client/proto/daemon.proto` (+42 -0) 📝 `client/proto/daemon_grpc.pb.go` (+101 -1) ➕ `client/server/event.go` (+36 -0) 📝 `client/server/server.go` (+18 -11) 📝 `client/ui/client_ui.go` (+46 -0) ➕ `client/ui/event/event.go` (+151 -0) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 04:06:29 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#16740