我如何使用 TCP 监视 C# 控制台应用程序中的系统日志消息
在我的应用程序中,我需要监视系统日志发送的所有消息。 我尝试过使用 UDP,但是在一条消息之后,我不再回复(没有错误,只是不再提示)。我认为设置 tcp 服务器也不是真正的解决方案。
任何人都可以指导我找到一个解决方案,让我可以使用 TCP(通常在端口 514 上)记录来自 syslog 的消息。
提前致谢。
In my application, i need to monitor all messages sent by syslog.
I've tried with UDP, but after one message, i didn't respond anymore (no error, just no heads up anymore). And setting up a tcp server isn't really the solution either i think.
Can anyone guide me to a solution where i can log messages form syslog with tcp (normally on port 514).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于明白了这一点。
系统日志消息似乎使用 UDP 作为标准。当启用 syslog 选项时,不会使用 TCP 进行监控。
也许这对其他人仍然有帮助
I figured this out at last.
It seems that syslog messages use UDP as standard. There's no monitoring with TCP when syslog option is enabled.
Maybe this is still helpfull to others