TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What's an annoyance you have with current logging tools?

1 点作者 Nevin1901超过 1 年前
Looking to solve some problems related to logging in my free time, curious what problems you guys have.

1 comment

avidiax超过 1 年前
* Structured logging is far more powerful than plain text, but we lack tools to convert plain text logging code to structured, and lack tools to convert plain text logs to structured<p>* Logging in a large system is a tragedy of the commons. A few players spam the logs like crazy, and the rest often don&#x27;t log enough. Logs, logs, everywhere, but not a line to debug.<p>* Logging tools do a very bad job revealing discrepancies in timing. i.e. did the gap between two events change?<p>* Very few tools are able to continuously ingest logs and then highlight discrepancies or differences in a log of interest. That could be lines that are different, have increased in frequency, or are absent. I have sed scripts to be able to compare good and bad logs in this way, but this is a last resort when nothing else helps.<p>*