0

我在使用分片数据库的应用程序中使用 Raygun 进行错误跟踪。单独的客户端将他们的数据存储在他们自己的数据库服务器分片上。

rails c
1> MultiSite.get_shard
#=> master
2> Post.count
#=> 0
3> MultiSite.set_shard :client1_prod
#=> nil
4> MultiSite.get_shard
#=> client1_prod
5> Post.count
#=> 123

使用 Raygun 时,我可以使用 Raygun 设置错误标签config/initializers/raygun.rb

Raygun.setup do |config|
  config.api_key = LOCAL_SETTINGS["raygun_token"]
  config.filter_parameters = Rails.application.config.filter_parameters
  config.version = EnvironmentInformation.get_version
  config.tags = [
                  EnvironmentInformation.get_server_name,
                  EnvironmentInformation.get_version,
                  EnvironmentInformation.get_commit_hash,
                  EnvironmentInformation.shard_name
                ]
  config.enable_reporting = true
end

所以在这里我试图EnvironmentInformation.shard_name告诉我哪个客户端(哪个分片)遇到错误,以便我可以在 Raygun 应用程序上过滤该标签。

不幸的是,在应用程序启动时(运行此初始化程序中的代码时),我们仍在分片上master。这意味着 Raygun 将每个错误标记为分master片。

有什么方法可以修改我的初始化程序,以便EnvironmentInformation.shard_name在实际发生错误时调用?

谷歌搜索还没有想出任何东西。

4

1 回答 1

0

通过功能请求,Raygun 的人实现了一个 proc,可用于在运行时动态设置标签。

虽然仍然普遍感兴趣,但我的具体问题现在已经解决了。

https://raygun.com/thinktank/suggestion/94060

于 2017-10-04T14:15:00.140 回答