[PR #2436] [CLOSED] 28.8_pprof #15146

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

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/2436
Author: @adam-skalicky
Created: 8/15/2024
Status: Closed

Base: mainHead: 28.8_pprof


📝 Commits (10+)

  • 0b1b7c1 Fix parameter limit issue for Postgres store
  • a8654ad Build docker images for testing
  • 91406cc Attempt to build and publish docker images
  • 8227ac3 Do not skip push
  • 0529a06 Attempt to fix image names for ghcr
  • 5b95708 Attempt to force publishing
  • 0c9f89c Fix image names
  • 37610a9 Added sql debug logging
  • 26a45ec Removed slow query
  • 503a11c debug action

📊 Changes

56 files changed (+2730 additions, -1747 deletions)

View changed files

.github/workflows/golang-test-darwin.yml (+0 -45)
.github/workflows/golang-test-freebsd.yml (+0 -39)
.github/workflows/golang-test-linux.yml (+0 -127)
.github/workflows/golang-test-windows.yml (+0 -52)
.github/workflows/install-script-test.yml (+0 -36)
.github/workflows/mobile-build-validation.yml (+0 -65)
📝 .github/workflows/release.yml (+196 -196)
.github/workflows/sync-main.yml (+0 -22)
.github/workflows/sync-tag.yml (+0 -23)
.github/workflows/test-infrastructure-files.yml (+0 -256)
.github/workflows/update-docs.yml (+0 -22)
📝 .goreleaser.yaml (+292 -302)
📝 management/client/client_test.go (+8 -1)
📝 management/client/grpc.go (+4 -3)
📝 management/cmd/management.go (+21 -1)
📝 management/server/account.go (+107 -45)
📝 management/server/account_test.go (+24 -4)
📝 management/server/config.go (+6 -0)
📝 management/server/dns.go (+97 -49)
📝 management/server/dns_test.go (+157 -1)

...and 36 more files

📄 Description

Added pprof

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/2436 **Author:** [@adam-skalicky](https://github.com/adam-skalicky) **Created:** 8/15/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `28.8_pprof` --- ### 📝 Commits (10+) - [`0b1b7c1`](https://github.com/netbirdio/netbird/commit/0b1b7c1925cabc5fc1b8fd017ff9b93069c030b7) Fix parameter limit issue for Postgres store - [`a8654ad`](https://github.com/netbirdio/netbird/commit/a8654ad6555eddb99b1f49516f4c6bee981b11fa) Build docker images for testing - [`91406cc`](https://github.com/netbirdio/netbird/commit/91406cc1a4f9bd1117b66634976d3a1959662f9d) Attempt to build and publish docker images - [`8227ac3`](https://github.com/netbirdio/netbird/commit/8227ac3625fb1ad40c511855610cc2102ab5d39e) Do not skip push - [`0529a06`](https://github.com/netbirdio/netbird/commit/0529a06b5bd92ae7c9566dbe3a2c4f5657802c26) Attempt to fix image names for ghcr - [`5b95708`](https://github.com/netbirdio/netbird/commit/5b9570898453b3c0ea294c0d286cebf333a6a48b) Attempt to force publishing - [`0c9f89c`](https://github.com/netbirdio/netbird/commit/0c9f89cd8991e0fd623ad65cda1d1be5010ea84f) Fix image names - [`37610a9`](https://github.com/netbirdio/netbird/commit/37610a9401f1549a5715e63740adde240c48d577) Added sql debug logging - [`26a45ec`](https://github.com/netbirdio/netbird/commit/26a45ecdd31f532a9971993c2ea6beda93d64cac) Removed slow query - [`503a11c`](https://github.com/netbirdio/netbird/commit/503a11cb42c4483fbf2fba4b0e1baa7faac01603) debug action ### 📊 Changes **56 files changed** (+2730 additions, -1747 deletions) <details> <summary>View changed files</summary> ➖ `.github/workflows/golang-test-darwin.yml` (+0 -45) ➖ `.github/workflows/golang-test-freebsd.yml` (+0 -39) ➖ `.github/workflows/golang-test-linux.yml` (+0 -127) ➖ `.github/workflows/golang-test-windows.yml` (+0 -52) ➖ `.github/workflows/install-script-test.yml` (+0 -36) ➖ `.github/workflows/mobile-build-validation.yml` (+0 -65) 📝 `.github/workflows/release.yml` (+196 -196) ➖ `.github/workflows/sync-main.yml` (+0 -22) ➖ `.github/workflows/sync-tag.yml` (+0 -23) ➖ `.github/workflows/test-infrastructure-files.yml` (+0 -256) ➖ `.github/workflows/update-docs.yml` (+0 -22) 📝 `.goreleaser.yaml` (+292 -302) 📝 `management/client/client_test.go` (+8 -1) 📝 `management/client/grpc.go` (+4 -3) 📝 `management/cmd/management.go` (+21 -1) 📝 `management/server/account.go` (+107 -45) 📝 `management/server/account_test.go` (+24 -4) 📝 `management/server/config.go` (+6 -0) 📝 `management/server/dns.go` (+97 -49) 📝 `management/server/dns_test.go` (+157 -1) _...and 36 more files_ </details> ### 📄 Description Added pprof ## Describe your changes ## Issue ticket number and link ### 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 --- <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 03:07:03 -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#15146