[PR #4416] [MERGED] [management,signal] Add wsproxy server components for management and signal servers #25411

Open
opened 2026-08-05 07:05:58 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/4416
Author: @lixmal
Created: 8/29/2025
Status: Merged
Merged: 9/23/2025
Merged by: @pascal-fischer

Base: poc-wasm-cleanHead: wsproxy-mgmt-signal


📝 Commits (10+)

  • 10a6e3a Add wsproxy server components for management and signal servers
  • d4abe0b Remove trace logs
  • cc9eec9 Remove unused code
  • a732774 Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal
  • 07efe48 Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal
  • 3289035 improve connection lifecycle
  • 6835741 add metrics for proxy
  • 8efb602 Fix static info collection from JS
  • 91429c7 Allow embed client to use pre-authed key (#4449)
  • 4f89f51 Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal

📊 Changes

5 files changed (+398 additions, -20 deletions)

View changed files

📝 management/internals/server/server.go (+14 -6)
📝 management/server/peer.go (+1 -0)
📝 signal/cmd/run.go (+38 -14)
util/wsproxy/server/metrics.go (+118 -0)
util/wsproxy/server/proxy.go (+227 -0)

📄 Description

Describe your changes

Stack

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)

By submitting this pull request, you confirm that you have read and agree to the terms of the Contributor License Agreement.

Documentation

Select exactly one:

  • I added/updated documentation for this change
  • Documentation is not needed for this change (explain why)

Docs PR URL (required if "docs added" is checked)

Paste the PR link from https://github.com/netbirdio/docs here:

https://github.com/netbirdio/docs/pull/__


🔄 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/4416 **Author:** [@lixmal](https://github.com/lixmal) **Created:** 8/29/2025 **Status:** ✅ Merged **Merged:** 9/23/2025 **Merged by:** [@pascal-fischer](https://github.com/pascal-fischer) **Base:** `poc-wasm-clean` ← **Head:** `wsproxy-mgmt-signal` --- ### 📝 Commits (10+) - [`10a6e3a`](https://github.com/netbirdio/netbird/commit/10a6e3a87be0bdfaa08e28777975ef78353b465e) Add wsproxy server components for management and signal servers - [`d4abe0b`](https://github.com/netbirdio/netbird/commit/d4abe0b7f546afef2b925b3aeaa7dc8229984bb4) Remove trace logs - [`cc9eec9`](https://github.com/netbirdio/netbird/commit/cc9eec9231ad2a5e7f3050b9e4b536fc4c610999) Remove unused code - [`a732774`](https://github.com/netbirdio/netbird/commit/a732774152d6a88c43885fcd157a827e216f42d1) Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal - [`07efe48`](https://github.com/netbirdio/netbird/commit/07efe48fb7173a0eb430b185bdde3eabf0a1a639) Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal - [`3289035`](https://github.com/netbirdio/netbird/commit/32890359e04104135d9be9d44c9d728b8fd93407) improve connection lifecycle - [`6835741`](https://github.com/netbirdio/netbird/commit/683574124223e26d524a37d18297f438f97eb7c1) add metrics for proxy - [`8efb602`](https://github.com/netbirdio/netbird/commit/8efb6026a87a30dd3af4574fd5187b247db14ba4) Fix static info collection from JS - [`91429c7`](https://github.com/netbirdio/netbird/commit/91429c7ffbb438f5c75056f8054e817b7a13e34b) Allow embed client to use pre-authed key (#4449) - [`4f89f51`](https://github.com/netbirdio/netbird/commit/4f89f51e39261193b60cfe8505d3c379145fb656) Merge branch 'poc-wasm-clean' into wsproxy-mgmt-signal ### 📊 Changes **5 files changed** (+398 additions, -20 deletions) <details> <summary>View changed files</summary> 📝 `management/internals/server/server.go` (+14 -6) 📝 `management/server/peer.go` (+1 -0) 📝 `signal/cmd/run.go` (+38 -14) ➕ `util/wsproxy/server/metrics.go` (+118 -0) ➕ `util/wsproxy/server/proxy.go` (+227 -0) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ## Stack <!-- branch-stack --> ### 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) > By submitting this pull request, you confirm that you have read and agree to the terms of the [Contributor License Agreement](https://github.com/netbirdio/netbird/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT.md). ## Documentation Select exactly one: - [ ] I added/updated documentation for this change - [x] Documentation is **not needed** for this change (explain why) ### Docs PR URL (required if "docs added" is checked) Paste the PR link from https://github.com/netbirdio/docs here: https://github.com/netbirdio/docs/pull/__ --- <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 07:05:58 -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#25411