[PR #4562] [CLOSED] [management/client] Feature/remote debug #25738

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

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/4562
Author: @aliamerj
Created: 9/30/2025
Status: Closed

Base: mainHead: feature/remote-debug-fix


📝 Commits (6)

  • b265457 try fix conflict
  • 9d24049 implement remote debug api (#4418)
  • c9adaae [management/client] Integrate Job API with Job Stream and Client Engine (#4428)
  • a96cbff update yml for job (#4532)
  • c54a0a1 try fix conflict 2
  • b3c417e Merge remote-tracking branch 'upstream/main' into feature/remote-debug-fix

📊 Changes

53 files changed (+3275 additions, -1108 deletions)

View changed files

📝 client/android/client.go (+2 -2)
📝 client/cmd/debug.go (+1 -1)
📝 client/cmd/status.go (+1 -1)
📝 client/cmd/testutil_test.go (+3 -3)
📝 client/cmd/up.go (+2 -1)
📝 client/embed/embed.go (+3 -1)
📝 client/internal/connect.go (+11 -7)
client/internal/debug/upload.go (+101 -0)
📝 client/internal/debug/upload_test.go (+2 -2)
📝 client/internal/engine.go (+114 -21)
📝 client/internal/engine_test.go (+11 -11)
📝 client/ios/NetBirdSDK/client.go (+3 -2)
client/jobexec/executor.go (+35 -0)
📝 client/server/debug.go (+1 -95)
📝 client/server/server.go (+3 -92)
📝 client/server/server_test.go (+8 -11)
📝 client/status/status.go (+94 -5)
📝 client/status/status_test.go (+1 -1)
📝 client/ui/debug.go (+3 -3)
📝 go.mod (+2 -0)

...and 33 more files

📄 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/4562 **Author:** [@aliamerj](https://github.com/aliamerj) **Created:** 9/30/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/remote-debug-fix` --- ### 📝 Commits (6) - [`b265457`](https://github.com/netbirdio/netbird/commit/b26545797d2b2b35c4433e772f8eac7da74add1b) try fix conflict - [`9d24049`](https://github.com/netbirdio/netbird/commit/9d240490f24a9a92d7c23e3ced796fb6ed0b0baf) implement remote debug api (#4418) - [`c9adaae`](https://github.com/netbirdio/netbird/commit/c9adaaebef305fa5da110fb21551f40c9c0e11d7) [management/client] Integrate Job API with Job Stream and Client Engine (#4428) - [`a96cbff`](https://github.com/netbirdio/netbird/commit/a96cbff47a47194d568371b371b11422bde00133) update yml for job (#4532) - [`c54a0a1`](https://github.com/netbirdio/netbird/commit/c54a0a12d79122db216da041a6fa1bcdf88bad46) try fix conflict 2 - [`b3c417e`](https://github.com/netbirdio/netbird/commit/b3c417eb0349f4428c50899e93a5254133dc8a89) Merge remote-tracking branch 'upstream/main' into feature/remote-debug-fix ### 📊 Changes **53 files changed** (+3275 additions, -1108 deletions) <details> <summary>View changed files</summary> 📝 `client/android/client.go` (+2 -2) 📝 `client/cmd/debug.go` (+1 -1) 📝 `client/cmd/status.go` (+1 -1) 📝 `client/cmd/testutil_test.go` (+3 -3) 📝 `client/cmd/up.go` (+2 -1) 📝 `client/embed/embed.go` (+3 -1) 📝 `client/internal/connect.go` (+11 -7) ➕ `client/internal/debug/upload.go` (+101 -0) 📝 `client/internal/debug/upload_test.go` (+2 -2) 📝 `client/internal/engine.go` (+114 -21) 📝 `client/internal/engine_test.go` (+11 -11) 📝 `client/ios/NetBirdSDK/client.go` (+3 -2) ➕ `client/jobexec/executor.go` (+35 -0) 📝 `client/server/debug.go` (+1 -95) 📝 `client/server/server.go` (+3 -92) 📝 `client/server/server_test.go` (+8 -11) 📝 `client/status/status.go` (+94 -5) 📝 `client/status/status_test.go` (+1 -1) 📝 `client/ui/debug.go` (+3 -3) 📝 `go.mod` (+2 -0) _...and 33 more files_ </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link #4354 ## Stack <!-- branch-stack --> ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [x] 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:06:24 -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#25738