Java 是否有像 Hoptoad 和 Exceptional for Ruby 这样的错误通知系统?
Ruby 世界中有几种优秀的用于错误通知和处理的托管服务,例如 hoptoad 和 例外。
我想为 Java 找到类似的服务。我不想安装像 Nagios 这样的单独的日志监控系统,因为这是用于安装的产品客户和我需要让事情变得简单。
我知道有一个名为 frog4j 的 log4j-to-hoptoad 集成,但它已经有近 1 年没有被加速了。年。还有其他选择吗?我更愿意找到直接支持 java 的托管服务,或更积极维护的第三方工具。
PS - 如果有特定于 Grails 的东西,我会使用 Grails。
谢谢!
There are several excellent hosted services for error notification and processing in the Ruby world, such as hoptoad and exceptional.
I'd like to find a similar service for Java. I don't want to install a separate log monitoring system like Nagios because this is for a product that gets installed by customers and I need to keep things simple.
I know there's a log4j-to-hoptoad integration called frog4j, but it hasn't been revved for nearly a year. Are there any other alternatives? I'd prefer to find a hosted service that supports java directly, or a more actively maintained 3rd party tool.
PS - I'm on Grails if there's something Grails-specific.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 Bugsnag 上工作,我们完全支持 Java,并且有一个 Java 的 OSS 提供程序,位于 GitHub。
I work on Bugsnag and we fully support Java and have an OSS provider for Java which is located on GitHub.
我不确定 这 是否是您正在寻找的内容,但它看起来相当不错。
I am not sure if this is what you are looking for but it seems pretty decent.
您可以使用 LogDigger Connector 库来捕获 Java Web 应用程序错误。标准版是免费的,收集请求级数据和日志。 (使用专业版,您可以跟踪用户操作,并在错误报告中包含最近的使用历史记录。)
通知可以通过电子邮件发送,使用 RSS 收集,或者您可以实现自己的机制。
有一个内置的 Web 界面可用于查看错误报告,因此您不需要外部服务。
You can use LogDigger Connector library to capture Java web application errors. Standard version is free and collects request-level data and logs. (With Pro version you can track user actions and have the recent usage history included with the error report.)
Notifications can be send via email, collected using RSS or you can implement your own mechanism.
There's a built-in web interface to review error reports so you don't need an external service.