增加 对选住推送日志的监控

本质上就是自己用mongodb记录一下日志。
This commit is contained in:
2026-01-05 16:08:54 +08:00
parent 7c7386d9eb
commit b746a1da1a
12 changed files with 706 additions and 180 deletions

View File

@@ -787,7 +787,9 @@ namespace BLWLogProduce.Services
string TopicKey = KafkaKey.BLWLog4XuanZhu_RCU_Topic;
string DetailKey = KafkaKey.UDPPackageDeviceStatus;
string logKey = KafkaKey.BLWLog_RCU_Topic;
await p.ProduceAsync(TopicKey, new Message<string, byte[]> { Key = DetailKey, Value = data });
await p.ProduceAsync(logKey, new Message<string, byte[]> { Key = DetailKey, Value = data });
}
catch (Exception ex)
{