Rails 应用程序乘客可能出现的错误

发布于 2024-07-26 11:42:36 字数 83 浏览 3 评论 0原文

我已经安装了 splunk 来从日志文件中检索信息,并在找到特定关键字时提醒我。 有没有办法获得可能的 Rails 错误,以便我可以将它们作为关键字?

I have installed splunk to retrieve information from my log files and elert me when specific keyword is found. Is there any way to get possible rails errors so that I can put those as keywords??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

硪扪都還晓 2024-08-02 11:42:36

您可以这样做:

exceptions = []
ObjectSpace.each_object(Class) do |o| 
  exceptions << o if (o < Exception)
end

这将为您提供所有异常的列表,但它会很大。 我在纯 IRB 中得到 390,所以如果您需要整个 Rails,可能会接近 5 或 600。

You could do this:

exceptions = []
ObjectSpace.each_object(Class) do |o| 
  exceptions << o if (o < Exception)
end

This will give you a list of all exceptions, but it will be quite large. I get 390 in pure IRB, so there will probably be closer to 5 or 600 if you've required the entire Rails.

命比纸薄 2024-08-02 11:42:36

你也应该能够通过玩弄 God 来实现这一点,但我喜欢 Yehuda 的答案

You should also be able to get that by playing around with God, but I like Yehuda's answer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文