Rails 应用程序乘客可能出现的错误
我已经安装了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样做:
这将为您提供所有异常的列表,但它会很大。 我在纯 IRB 中得到 390,所以如果您需要整个 Rails,可能会接近 5 或 600。
You could do this:
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.
你也应该能够通过玩弄 God 来实现这一点,但我喜欢 Yehuda 的答案
You should also be able to get that by playing around with God, but I like Yehuda's answer