Add deployment
CI / frontend (push) Failing after 57s
CI / backend (push) Failing after 6m27s

This commit is contained in:
voltsrage
2026-08-05 00:26:20 +08:00
parent 9e88ff6113
commit 2a3ef62a7d
86 changed files with 2320 additions and 174 deletions
@@ -48,7 +48,8 @@ public sealed class KafkaConsumerLagCollector : BackgroundService
private async Task CollectGroupLagAsync(string groupId, CancellationToken ct)
{
var adminConfig = new AdminClientConfig
{ BootstrapServers = _kafkaOptions.BootstrapServers };
{ BootstrapServers = _kafkaOptions.BootstrapServers }
.ApplySecurity(_kafkaOptions);
using var admin = new AdminClientBuilder(adminConfig).Build();
@@ -69,7 +70,7 @@ public sealed class KafkaConsumerLagCollector : BackgroundService
{
BootstrapServers = _kafkaOptions.BootstrapServers,
GroupId = $"__lag-probe",
}).Build();
}.ApplySecurity(_kafkaOptions)).Build();
long totalLag = 0;
foreach (var tpo in partitions)