Patches ActiveJob to add attribute tracing_info
, which is added as log's tag.
The purpose of this patch is to be able to trace which workers are called as a result of user's HTTP request.
Add this line to your application's Gemfile:
gem 'activejob-traceable'
And then execute:
$ bundle
Or install it yourself as:
$ gem install activejob-traceable
Create an initializer to tell ActiveJob how to get current tracing_info
and how to set it once deserialized:
# config/initializers/activejob_traceable.rb
ActiveJob::Traceable.tracing_info_getter = lambda do
{
actor_id: CurrentScope.actor_id,
correlation_id: CurrentScope.correlation_id
}
end
ActiveJob::Traceable.tracing_info_setter = lambda do |attributes|
CurrentScope.actor_id = attributes[:actor_id]
CurrentScope.correlation_id = attributes[:correlation_id]
end
Once configured, works out of the box.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, make sure you updated the version number in version.rb
, and then create a new release and tag from github.
Bug reports and pull requests are welcome on GitHub at https://github.com/qonto/activejob-traceable. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
To publish a new version to rubygems, update the version in lib/activejob/traceable/version.rb
, and merge.