Original PR: https://github.com/RedWizardsLab/EchoHub/pull/64 Author: @HueByte Created: 7/17/2026 Status: ✅ Merged Merged: 7/17/2026 Merged by: @HueByte
Base: master ← Head: dev_logs_extended
master
dev_logs_extended
7525f8b
79e5a11
fd61d9c
19 files changed (+1011 additions, -12 deletions)
📝 .env.example (+16 -0) 📝 docs/changelog/index.md (+1 -0) 📝 docs/changelog/toc.yml (+2 -0) ➕ docs/changelog/v0.2.16.md (+43 -0) 📝 src/Directory.Build.props (+1 -1) ➕ src/EchoHub.Core/Models/ServerStatsReport.cs (+62 -0) 📝 src/EchoHub.Server.Irc/IrcGatewayService.cs (+2 -2) ➕ src/EchoHub.Server/Config/StatsOptions.cs (+21 -0) 📝 src/EchoHub.Server/Controllers/ChannelsController.cs (+14 -1) 📝 src/EchoHub.Server/Controllers/ModerationController.cs (+46 -4) 📝 src/EchoHub.Server/Data/EchoHubDbContext.cs (+7 -0) ➕ src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.Designer.cs (+437 -0) ➕ src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.cs (+54 -0) 📝 src/EchoHub.Server/Data/Migrations/EchoHubDbContextModelSnapshot.cs (+61 -0) 📝 src/EchoHub.Server/Program.cs (+8 -0) 📝 src/EchoHub.Server/Services/ChatService.cs (+12 -4) ➕ src/EchoHub.Server/Services/Stats/ServerStatsCollector.cs (+68 -0) ➕ src/EchoHub.Server/Services/Stats/ServerStatsReportService.cs (+151 -0) 📝 src/EchoHub.Server/appsettings.example.json (+5 -0)
.env.example
docs/changelog/index.md
docs/changelog/toc.yml
docs/changelog/v0.2.16.md
src/Directory.Build.props
src/EchoHub.Core/Models/ServerStatsReport.cs
src/EchoHub.Server.Irc/IrcGatewayService.cs
src/EchoHub.Server/Config/StatsOptions.cs
src/EchoHub.Server/Controllers/ChannelsController.cs
src/EchoHub.Server/Controllers/ModerationController.cs
src/EchoHub.Server/Data/EchoHubDbContext.cs
src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.Designer.cs
src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.cs
src/EchoHub.Server/Data/Migrations/EchoHubDbContextModelSnapshot.cs
src/EchoHub.Server/Program.cs
src/EchoHub.Server/Services/ChatService.cs
src/EchoHub.Server/Services/Stats/ServerStatsCollector.cs
src/EchoHub.Server/Services/Stats/ServerStatsReportService.cs
src/EchoHub.Server/appsettings.example.json
see changelog
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/RedWizardsLab/EchoHub/pull/64
Author: @HueByte
Created: 7/17/2026
Status: ✅ Merged
Merged: 7/17/2026
Merged by: @HueByte
Base:
master← Head:dev_logs_extended📝 Commits (3)
7525f8bfeat: add periodic server stats reporting and logging79e5a11feat: update changelog for v0.2.16 release with new features and improvementsfd61d9cfix: remove invisible character from migration file📊 Changes
19 files changed (+1011 additions, -12 deletions)
View changed files
📝
.env.example(+16 -0)📝
docs/changelog/index.md(+1 -0)📝
docs/changelog/toc.yml(+2 -0)➕
docs/changelog/v0.2.16.md(+43 -0)📝
src/Directory.Build.props(+1 -1)➕
src/EchoHub.Core/Models/ServerStatsReport.cs(+62 -0)📝
src/EchoHub.Server.Irc/IrcGatewayService.cs(+2 -2)➕
src/EchoHub.Server/Config/StatsOptions.cs(+21 -0)📝
src/EchoHub.Server/Controllers/ChannelsController.cs(+14 -1)📝
src/EchoHub.Server/Controllers/ModerationController.cs(+46 -4)📝
src/EchoHub.Server/Data/EchoHubDbContext.cs(+7 -0)➕
src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.Designer.cs(+437 -0)➕
src/EchoHub.Server/Data/Migrations/20260717200332_AddServerStatsReports.cs(+54 -0)📝
src/EchoHub.Server/Data/Migrations/EchoHubDbContextModelSnapshot.cs(+61 -0)📝
src/EchoHub.Server/Program.cs(+8 -0)📝
src/EchoHub.Server/Services/ChatService.cs(+12 -4)➕
src/EchoHub.Server/Services/Stats/ServerStatsCollector.cs(+68 -0)➕
src/EchoHub.Server/Services/Stats/ServerStatsReportService.cs(+151 -0)📝
src/EchoHub.Server/appsettings.example.json(+5 -0)📄 Description
Summary
see changelog
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.