Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将错误从发条发送到 Airbrake 的最佳方法是什么?
airbrake 库有一个 API 可以直接通知他们的服务而不引发异常。他们的 GitHub 上有大量关于此的文档。
空气制动红宝石
你可以这样做:
Airbrake.notify("Opps!")
只需将以下内容添加到您的发条定义中:
module Clockwork error_handler do |error| Airbrake.notify_or_ignore(error) end # existing configuration end
参见:Clockwork Docs abouterror_handler
error_handler