[PR #3035] [MERGED] Add new log streaming and client endpoint to connection log #22494

Closed
opened 2026-06-02 05:21:33 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/3035
Author: @oschwartz10612
Created: 5/9/2026
Status: Merged
Merged: 5/9/2026
Merged by: @oschwartz10612

Base: mainHead: dev


📝 Commits (10+)

  • 451f3d2 New translations en-us.json (French)
  • cbdc747 Implement s3 streaming destination
  • 10fa927 Add streaming errors for debug
  • 1144866 Add client endpoint to network log
  • 27d2306 Merge branch 's3' into dev
  • 4de2dff New translations en-us.json (French)
  • 975f3a0 New translations en-us.json (Bulgarian)
  • b6b2dbd New translations en-us.json (Czech)
  • b426725 New translations en-us.json (German)
  • d7b96ba New translations en-us.json (Italian)

📊 Changes

29 files changed (+1527 additions, -138 deletions)

View changed files

📝 messages/bg-BG.json (+29 -2)
📝 messages/cs-CZ.json (+29 -2)
📝 messages/de-DE.json (+29 -2)
📝 messages/en-US.json (+29 -2)
📝 messages/es-ES.json (+29 -2)
📝 messages/fr-FR.json (+32 -6)
📝 messages/it-IT.json (+29 -2)
📝 messages/ko-KR.json (+29 -2)
📝 messages/nb-NO.json (+30 -3)
📝 messages/nl-NL.json (+29 -2)
📝 messages/pl-PL.json (+29 -2)
📝 messages/pt-PT.json (+29 -2)
📝 messages/ru-RU.json (+29 -2)
📝 messages/tr-TR.json (+29 -2)
📝 messages/zh-CN.json (+29 -2)
📝 server/db/pg/schema/privateSchema.ts (+3 -0)
📝 server/db/sqlite/schema/privateSchema.ts (+3 -0)
📝 server/private/lib/logConnectionAudit.ts (+1 -0)
📝 server/private/lib/logStreaming/LogStreamingManager.ts (+75 -16)
server/private/lib/logStreaming/providers/S3LogDestination.ts (+279 -0)

...and 9 more files

📄 Description

  • Implement s3 streaming destination
  • Add streaming errors for debug
  • Add client endpoint to network log

🔄 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/fosrl/pangolin/pull/3035 **Author:** [@oschwartz10612](https://github.com/oschwartz10612) **Created:** 5/9/2026 **Status:** ✅ Merged **Merged:** 5/9/2026 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`451f3d2`](https://github.com/fosrl/pangolin/commit/451f3d24a8ffb312e1b3fcf54e563c508bbc2d09) New translations en-us.json (French) - [`cbdc747`](https://github.com/fosrl/pangolin/commit/cbdc74768f8a29199969a89f613d4bd3e5cfac6d) Implement s3 streaming destination - [`10fa927`](https://github.com/fosrl/pangolin/commit/10fa9274d01940a902898574bf1b8f3162604fab) Add streaming errors for debug - [`1144866`](https://github.com/fosrl/pangolin/commit/114486608e44dbcaf2962e7bb46ffea1a4f54727) Add client endpoint to network log - [`27d2306`](https://github.com/fosrl/pangolin/commit/27d230647fa1b9d879863ff47cf5a0414642f5dc) Merge branch 's3' into dev - [`4de2dff`](https://github.com/fosrl/pangolin/commit/4de2dfff85470569825d7c72741090e5acbaf5b7) New translations en-us.json (French) - [`975f3a0`](https://github.com/fosrl/pangolin/commit/975f3a01f56e693d8ee4db02503ed031632aa397) New translations en-us.json (Bulgarian) - [`b6b2dbd`](https://github.com/fosrl/pangolin/commit/b6b2dbd8abc0d4be874f8dd0602f0793f6df6423) New translations en-us.json (Czech) - [`b426725`](https://github.com/fosrl/pangolin/commit/b42672530fdeb19be161fc6111f32a4554158356) New translations en-us.json (German) - [`d7b96ba`](https://github.com/fosrl/pangolin/commit/d7b96ba3f596a782418e9170b9544d117f7df5c9) New translations en-us.json (Italian) ### 📊 Changes **29 files changed** (+1527 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `messages/bg-BG.json` (+29 -2) 📝 `messages/cs-CZ.json` (+29 -2) 📝 `messages/de-DE.json` (+29 -2) 📝 `messages/en-US.json` (+29 -2) 📝 `messages/es-ES.json` (+29 -2) 📝 `messages/fr-FR.json` (+32 -6) 📝 `messages/it-IT.json` (+29 -2) 📝 `messages/ko-KR.json` (+29 -2) 📝 `messages/nb-NO.json` (+30 -3) 📝 `messages/nl-NL.json` (+29 -2) 📝 `messages/pl-PL.json` (+29 -2) 📝 `messages/pt-PT.json` (+29 -2) 📝 `messages/ru-RU.json` (+29 -2) 📝 `messages/tr-TR.json` (+29 -2) 📝 `messages/zh-CN.json` (+29 -2) 📝 `server/db/pg/schema/privateSchema.ts` (+3 -0) 📝 `server/db/sqlite/schema/privateSchema.ts` (+3 -0) 📝 `server/private/lib/logConnectionAudit.ts` (+1 -0) 📝 `server/private/lib/logStreaming/LogStreamingManager.ts` (+75 -16) ➕ `server/private/lib/logStreaming/providers/S3LogDestination.ts` (+279 -0) _...and 9 more files_ </details> ### 📄 Description - **Implement s3 streaming destination** - **Add streaming errors for debug** - **Add client endpoint to network log** --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-02 05:21:33 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#22494